天天看點

left join 左邊有資料,右邊無資料,查詢結果出現inner join的情況(and 和 where 的差別)

select aname,bname,score from A left join B on A.id=B.aid where year=’2015’

select aname,bname,score from A left join B on A.id=B.aid and year=’2015’