当查询结果的列来源于多张表时,需要将多张表连接成一个大的数据集,再选择合适的列返回
1 内连接查询
查询的结果为两个表匹配到的数据(表A有, 且表B也有的才显示)
select from 表A inner join 表B;
`select from people inner join class;<br /><br />
select * from people inner join class on people.cls_id=class.id;<br />
select p.name, c.name from people p inner join class c on p.cls_id=c.id;`
2 外连接查询
(1) 左连接查询
查询的结果为两个表匹配到的数据,左表特有的数据,对于右表中不存在的数据使用null填充select * from people left join class on people.cls_id=class.id;
(2) 右连接查询
查询的结果为两个表匹配到的数据,右表特有的数据,对于左表中不存在的数据使用null填充select * from people right join class on people.cls_id=class.id;