@filiberto
To select and join more than 2 tables in Oracle, you can use the following SQL syntax:
1 2 3 4 5 |
SELECT t1.column1, t2.column2, t3.column3 FROM table1 t1 JOIN table2 t2 ON t1.common_column = t2.common_column JOIN table3 t3 ON t2.common_column = t3.common_column WHERE <conditions>; |
In this SQL query:
By using the JOIN
keyword multiple times, you can join more than two tables together in Oracle.