How to join two tables mysql? How to join two tables mysql? mysql mysql

How to join two tables mysql?


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


SELECT ...FROM services AS sJOIN clients AS c  ON s.client = c.idWHERE ...


SELECT ...FROM services AS sINNER JOIN clients AS c  ON s.client=c.id