こんにちは、複数のテーブルに適したクエリの種類を知りたいです。
例:
select table1.id, table1.name from table1,table2,table3
where table1.id=table2.id and table2.id=table3.id
また
select table1.id, table1.name
from table1
inner join table2 on table1.id=table2.id
inner join table3 on table2.id=table3.id
where 1
また
select table1.id, table1.name
from table1
join table2 on table1.id=table2.id
join table3 on table2.id=table3.id
where 1
パフォーマンスに最適なクエリの種類はどれですか?