MySQL 3つ以上のテーブル結合

難しいことじゃないけど。

select * from table1 inner join table2 on table1.id = table2.id inner join table3 on table1.id = table3.id;