左外链接 把右边的表全部归属左边的表 左边的内容全部显示 右边只显示匹配的内容
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;
左外链接 把右边的表全部归属左边的表 左边的内容全部显示 右边只显示匹配的内容
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;
本文标题:左外链接 主要是为了多表连接查询
本文链接:https://www.haomeiwen.com/subject/uqgdlctx.html
网友评论