- subQueries
- an array of SQL SELECT statements, all of which must have the same columns as the same positions in their results
- sortOrder
- How to order the rows, formatted as an SQL ORDER BY clause (excluding the ORDER BY itself). Passing null will use the default sort order, which may be unordered.
- limit
- The limit clause, which applies to the entire union result set
Documentation for this section has not yet been entered.
Given a set of subqueries, all of which are SELECT statements, construct a query that returns the union of what those subqueries return.