Skip to main content

IN

in Anatomy of a DPQL query
Authors list
Published: Mar 23, 2018|Last updated: Nov 3, 2022

You can use IN to create subqueries. For example:

SELECT tickets.id FROM tickets WHERE tickets.id IN (     SELECT tickets.id     FROM tickets     WHERE tickets.ref LIKE 'AAAA-%' )
copy
HelpfulUnhelpful
next pageUNION
previous pageLAYER WITH

Please log in or register to submit a comment.