发布网友 发布时间: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