SelectQuery::union |
function |
core/includes/database/select.inc |
Implements SelectQueryInterface::union(). |
SelectQuery::$union |
property |
core/includes/database/select.inc |
An array whose elements specify a query to UNION, and the UNION type. The
'type' key may be '', 'ALL', or 'DISTINCT' to represent a 'UNION',
'UNION ALL', or 'UNION DISTINCT'… |
SelectQuery::getUnion |
function |
core/includes/database/select.inc |
Implements SelectQueryInterface::getUnion(). |
SelectQueryExtender::union |
function |
core/includes/database/select.inc |
Add another Select query to UNION to this one. |
SelectQueryInterface::union |
function |
core/includes/database/select.inc |
Add another Select query to UNION to this one. |
SelectQueryExtender::getUnion |
function |
core/includes/database/select.inc |
Returns a reference to the union queries for this query. This include
queries for UNION, UNION ALL, and UNION DISTINCT. |
SelectQueryInterface::getUnion |
function |
core/includes/database/select.inc |
Returns a reference to the union queries for this query. This include
queries for UNION, UNION ALL, and UNION DISTINCT. |
DatabaseSelectTestCase::testUnion |
function |
core/modules/simpletest/tests/database_test.test |
Test that we can UNION multiple Select queries together. This is
semantically equal to UNION DISTINCT, so we don't explicitly test that. |
DatabaseSelectTestCase::testUnionAll |
function |
core/modules/simpletest/tests/database_test.test |
Test that we can UNION ALL multiple Select queries together. |