select * from table a, table b where a.aid = b.bid and aid >100table
這樣鏈接,若是a有數據,b沒有數據, a.aid = b.bid對不上號的時候,就是null,數據不會搜索出來。select
select * from table a left join table b on a.aid = b.bid where and aid > 100;搜索
這樣鏈接,若是a有數據,b沒有數據, a.aid = b.bid對不上號的時候,會搜索出來數,只是b字段都是null而已。數據