Baseie-se nos seguintes dois resultados de teste
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
é mais rápido (237 vs 460). Até onde eu sei, é um padrão.
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