其他分享
首页 > 其他分享> > 七、UNION操作符

七、UNION操作符

作者:互联网

UNION 操作符用于连接两个以上的 SELECT 语句的结果组合到一个结果集合中。多个 SELECT 语句会删除重复的数据。

语法:

SELECT expression1, expression2, ... expression_n
FROM tables
[WHERE conditions]
UNION [ALL | DISTINCT]
SELECT expression1, expression2, ... expression_n
FROM tables
[WHERE conditions];

 

标签:tables,...,UNION,操作符,expression1,expression2,SELECT
来源: https://www.cnblogs.com/epiphany8/p/16369396.html