Skip to main content

UNION

in Anatomy of a DPQL query
Authors list
Ippubblikat: Mar 23, 2018|Aġġornat: Nov 3, 2022

The UNION keyword is used to combine the result-set of two or more SELECT statements. For example:

SELECT tickets.id FROM ( (SELECT tickets.id FROM tickets WHERE tickets.id > 0 AND tickets.id < 5) UNION DISTINCT (SELECT tickets.id FROM tickets WHERE tickets.id > 5 AND tickets.id < 10) ) AS 'tickets'
copy

UNION needs to be embedded inside FROM (technically making it a sub-query).

UtliMhux utli
next pageGeneral Expression Format
previous pageIN

Please log in or register to submit a comment.