SQL内,外,左,右,全连接概述

一直搞不清楚SQl内,外,左,右,全连接,今天在数据库中测试了下,先将测试心得体会放出:

表结构:
student
no       name
1 a
2 b
3 c
4 d

grade

no grade
1   90
2   80
3         85
3         95

运行语句如下
select * from student,grade WHERE student.no = grade.no ---普通的where语句
select * from student inner join grade on student.no = grade.no     ---内连接语句
select * from student left join grade on student.no = grade.no     ---左连接语句
select * from student right join grade on student.no = grade.no     ---右连接语句
select * from student full join grade on student.no = grade.no     ---全连接语句
运行结果如下:
普通的where语句
no name      no grade
1 a 1 90
2 b 2 80
3 c 3 85
3 c 3 90
  内连接语句
no   name  no grade
1 a 1 90
2 b 2 80
3 c 3 85
3 c 3 90
左连接语句
no   name  no grade
1 a 1 90
2 b 2 80
3 c 3 85
3 c 3 90
4 d NULL NULL
右连接语句
no   name  no grade
1 a 1 90
2 b 2 80
3 c 3 85
3 c 3 90
全连接语句
no   name  no grade
1 a 1 90
2 b 2 80
3 c 3 85
3 c 3 90
4 d NULL NULL

总结:
从上面例子可以看出:
内连接和我们平时所用的where语句效果一致,即两个表的共同的部分
外连接包括(左连接、右连接)
左连接,即已左边的表为主表,右边的表为副表,将主表中需要的字段全部列出,然后将副表中的数据按照查询条件与其对应起来,
右连接则相反。
全连接,则是将两个表的需要的字段的数据全排列。
 

你可能感兴趣的:(右,SQL内,左,外,全连接概述)