SQL集合

Posted 端木祈月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL集合相关的知识,希望对你有一定的参考价值。

取交集 :intersect(取的项目必须要相同)

select  sno,sname from student intersect

select sno,sname from student where  sno>‘s004‘ 

取差集:MINUS 去掉相同部分

select sno,sname from student  minus

select sno,sname from student where sno<‘s003‘

子查询

(1)单行子查询:不向外部的SQL语句返回结果或只返回一行

(2)多行子查询:向外部返回一行或多行

 

select sno,sname from student 

where asge < (select avg(sage) from student)

子查询不能包含order by

以上是关于SQL集合的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server进阶集合运算

SQL记录-PLSQL集合

SQL进阶系列之7用SQL进行集合运算

详解SQL语句的集合运算

sql server 交集,差集的用法 (集合运算)

[SQL] SQL 基础知识梳理- 集合运算