SQL三表联查
下面三个表分别是:table1表、table2表、table3表
目标:查询A公司的所有30岁以下员工的名字。
SELECT employee_name
FROM (table3 c LEFT JOIN TABLE1 a
ON c.employee_id=a.employee_id )
LEFT JOIN table2 b ON b.company_id=a.company_id
WHERE company_name =‘A’ and employee_age<30;