2021-06-03
作者:互联网
连接查询
内连接和多表连接
内连接分为交叉连接,相等连接,自然连接。
1.交叉连接:select * from 表名1 cross join 表名1,表名2
2.相等连接:select * from 表名1 join 表名2 on 表名1.字段名=表名2.字段名
3.自然连接:select * from 表名1 natural join 表名2
多表连接查询
select from 表名1 join 表名2 on 表名1.字段名=表名2.字段名 join 表名3 on 表名2.字段名=表名3.字段名
外链接查询:在内连接中,只有满足条件的记录才能出现在结果集中
,但是希望不满足条件的记录也出现在结果集中使用外链接查询。
左外连接:查询的结果集中包括左表中的所有记录和右表中满足条件的记录。
select * from 左表 left join 右表 on 左表.字段名=右表.字段名 where 条件
右外连接:查询的结果集中包括右表中的所有记录和左表中满足条件的记录。
select * from 右表 right join 右表 on 左表.字段名=右表.字段名 where 条件
简单连接查询:select 字段名 from 表1,表2 where 表名1.字段名=表名2.字段名
标签:03,06,select,右表,2021,表名,join,连接,字段名 来源: https://blog.csdn.net/weixin_58895343/article/details/117515673