Zkuste toto
select * from Users u
where exists
( select user_id
from Log_mview l
where l.user_id = u.user_id )
/
Pokud dílčí dotaz vrátí velký počet řádků WHERE EXISTS
může být podstatně rychlejší než WHERE ... IN
.
Zkuste toto
select * from Users u
where exists
( select user_id
from Log_mview l
where l.user_id = u.user_id )
/
Pokud dílčí dotaz vrátí velký počet řádků WHERE EXISTS
může být podstatně rychlejší než WHERE ... IN
.