mysql内连接,左连接,右连接

首先建立两张表

mysql内连接,左连接,右连接_第1张图片

mysql内连接,左连接,右连接_第2张图片

student表和score表

1.内连接查询

select * from student inner join score on student.sno = score.sno;

mysql内连接,左连接,右连接_第3张图片

只会查询出,student表中sno和score表中sno相等的数据,组合起来展示

2.左连接

select * from student left join score on student.sno = score.sno;

mysql内连接,左连接,右连接_第4张图片

主要以为左边的表为主,左边表的数据全部展示出来,右边的表只展示score.sno = student.sno的数据。如果没有则右边的数据直接写为空。

2.右连接

select * from student right join score on student.sno = score.sno;

主要以右边的表为主,同样的效果和左连接是相反的。

你可能感兴趣的:(mysql,mysql,数据库,sql)