大家好,欢迎来到IT知识分享网。
一、概述
SQL语句实现数据的并集(union)、交集(intersect)、差集(except)。
二、案例
1、stu表
| id | name |
|---|---|
| 1 | 张三 |
| 2 | 李四 |
| 3 | 王二 |
2、并集 union
union 运算:表示取并集,例如:
select * from stu where id <= '2' UNION select * from stu where id >= '2'
| id | name |
|---|---|
| 1 | 张三 |
| 2 | 李四 |
| 3 | 王二 |
union 会自动去除重复数据,如果需要显示重复的可以使用 union all。
select * from stu where id <= '2' UNION ALL select * from stu where id >= '2'
| id | name |
|---|---|
| 1 | 张三 |
| 2 | 李四 |
| 2 | 李四 |
| 3 | 王二 |
3、交集 intersect
intersect 运算:表示取交集,例如:
select * from stu where id <= '2' INTERSECT select * from stu where id >= '2'
| id | name |
|---|---|
| 2 | 李四 |
4、差集 except
except 运算:表示对两个相同结果集的关系去差集,例如:
select * from stu where id <= '2' EXCEPT select * from stu where id >= '2'
| id | name |
|---|---|
| 1 | 张三 |
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/119199.html