1
0
forked from docs/doc-exports
doc-exports/docs/ddm/umn/ddm-08-0011.html

1.1 KiB

SELECT UNION Syntax

Common Syntax

SELECT ...UNION [ALL | DISTINCT] 
SELECT ...[UNION [ALL | DISTINCT] SELECT ...]

Example

select userid from user union select orderid from ordertbl order by userid;
select userid from user union (select orderid from ordertbl group by orderid) order by userid;

Syntax Restrictions

SELECT statements in UNION do not support duplicate column names.