SQLite Forum

Join Multiple Table
Login
How to join multiple table as below example:



Table_1 LEFT JOIN Table_2 ON TABLE_1.Condition = TABLE_2.Condition

Table_2 LEFT JOIN Table_3 ON TABLE_2.Condition = TABLE_3.Condition


The 3 table have to join together to show result.


How should I query?