2个表左右链接会写,但如果是多表查询,其中有2个表是有左链接关系,其他的是外键关系,该怎么写啊 
select if( f.checked=1,'Y','N') as checkjob,f.USER_NAME,r.TOTAL_FLY_HOURS,d.VALUE_CODE as country,
GROUP_CONCAT(v.VALUE_CODE) as airtype from fly_user f,resume_pilot r,resume_jet_time j ,dict_value d,dict_value v
where f.USER_ID=r.USER_ID and r.PILOT_RESUME_ID=j.pilot_resume_id and r.COUNTRY=d.VALUE_ID 
and j.aircraft_type=v.VALUE_ID and f.user_name like '%aaa%'  group by j.pilot_resume_id order by USER_NAME 
其中resume_pilot r,resume_jet_time j 有左链接关系(resume_jet_time可能有NULL)网上搜了很多都是2个表的,多个表就不知道了,谢谢