Založte na následujících dvou výsledcích testu
select a.id, a.name,a.country from table a left join table b
on a.id = b.id
where a.name is not null
je rychlejší (237 vs 460). Pokud vím, je to standard.
Založte na následujících dvou výsledcích testu
select a.id, a.name,a.country from table a left join table b
on a.id = b.id
where a.name is not null
je rychlejší (237 vs 460). Pokud vím, je to standard.