您的位置:首页 > 博客中心 > 数据库 >

SQL中JOIN的使用

时间:2022-03-15 06:45

根据网络上的一些材料整理得到:

左连接 (left join)
select * from table1 left join tbale2 on table1.id=table2.id
这条sql语句返回结果 table1表中的数据全部返回 table2表中的数据只返回满足where条件的

右链接 (right join)
select * from table1 right join table2 on table1.id=table2.id
这条sql语句返回结果 table2表中的数据全部返回 table1表中的数据只返回满足where条件的

(insert join)
select * from table1 inner join table2 on table1.id = table2.id
这条sql语句返回结果 显示满足条件的数据 并不以谁为主表

 

---------------------------------------------------------------------------------------后续继续补充-------------------------------------------------------------------------

热门排行

今日推荐

热门手游