如何使用SQL语句进行多表查询

发布网友 发布时间:2022-04-22 21:32

我来回答

1个回答

热心网友 时间:2022-04-08 08:51

使用sql语句进行多表查询需要使用数据库的连接。
sql中德链接分为内链接,外连接(左外连接,右外连接),交叉链接
根据业务的不同选取不同的连接方式。
内连接:
select * from student a
inner join stumark b
on a.stuid=b.stuid
左外连接
select * from student a
left join stumark b
on a.stuid=b.stuid
右外连接
select * from stumark a
right join student b
on a.stuid=b.stuid
交叉连接
select * from stumark a
crossjoin student b
on a.stuid=b.stuid

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com