左外鏈接 把右邊的表全部歸屬左邊的表 左邊的內(nèi)容全部顯示 右邊只顯示匹配的內(nèi)容
? ? mysql> select a.name,b.name,b.surfacearea
? ? mysql> select a.name,b.name,b.surfacearea
? ? ? from city as a
? left
? join country as b
? on a.countrycode=b.code
? and a.population<100 limit 10;
???