How to join two tables mysql?

SELECT * FROM table1 LEFT JOIN table2 on table1.id = table2.id

Leave a Comment