Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
明示的な結合を使用して3つのテーブルを結合する必要があります。3つのテーブルすべてに共通のキーはありません。
テーブルを結合する必要がある場合は、すべてのペアに共通のキーが必要です。 したがって、次のようなことを試すことができます。
SELECT t1.*, t2.*, t3.* FROM table1 t1 INNER JOIN table2 t2 ON t1.id1 = t2.id1 INNER JOIN table3 t3 ON t2.id2 = t3.id2