次の2つのテスト結果に基づく
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
より高速です(237対460)。 私の知る限り、これは標準です。
次の2つのテスト結果に基づく
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
より高速です(237対460)。 私の知る限り、これは標準です。