| Select::forUpdate |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Add FOR UPDATE to the query. |
| Select::forUpdate |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Select.php |
Add FOR UPDATE to the query. |
| Select::getArguments |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Compiles and returns an array of the arguments for this prepared statement. |
| Select::getExpressions |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the expressions array for this query. |
| Select::getFields |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the fields array for this query. |
| Select::getGroupBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the group-by array for this query. |
| Select::getInfo |
function |
core/lib/Drupal/Core/Render/Element/Select.php |
Returns the element properties for this element. |
| Select::getMetaData |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Retrieves a given piece of metadata. |
| Select::getOrderBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the order by array for this query. |
| Select::getTables |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the tables array for this query. |
| Select::getUnion |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the union queries for this query. |
| Select::groupBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Groups the result set by the specified field. |
| Select::hasAllTags |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Determines if a given query has all specified tags. |
| Select::hasAnyTag |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Determines if a given query has any specified tag. |
| Select::hasTag |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Determines if a given query has a given tag. |
| Select::having |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Adds an arbitrary HAVING clause to the query. |
| Select::havingArguments |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Gets a list of all values to insert into the HAVING clause. |
| Select::havingCompile |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Compiles the HAVING clause for later retrieval. |
| Select::havingCondition |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Helper function to build most common HAVING conditional clauses. |
| Select::havingConditions |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Gets a list of all conditions in the HAVING clause. |
| Select::havingExists |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Sets a HAVING condition that the specified subquery returns values. |
| Select::havingIsNotNull |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Sets a condition in the HAVING clause that the specified field be NOT NULL. |
| Select::havingIsNull |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Sets a condition in the HAVING clause that the specified field be NULL. |
| Select::havingNotExists |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Sets a HAVING condition that the specified subquery returns no values. |
| Select::innerJoin |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Inner Join against another table in the database. |
| Select::isPrepared |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Indicates if preExecute() has already been called on that object. |
| Select::join |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Default Join against another table in the database. |
| Select::leftJoin |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Left Outer Join against another table in the database. |
| Select::orderBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Orders the result set by a given field. |
| Select::orderBy |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Select.php |
Overrides SelectQuery::orderBy(). |
| Select::orderRandom |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Select.php |
Orders the result set by a random value. |
| Select::orderRandom |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Orders the result set by a random value. |
| Select::preExecute |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Generic preparation and validation for a SELECT query. |
| Select::prepareCountQuery |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Prepares a count query from the current query object. |
| Select::preRenderSelect |
function |
core/lib/Drupal/Core/Render/Element/Select.php |
Prepares a select render element. |
| Select::processSelect |
function |
core/lib/Drupal/Core/Render/Element/Select.php |
Processes a select list form element. |
| Select::range |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Restricts a query to a given range in the result set. |
| Select::union |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Add another Select query to UNION to this one. |
| Select::valueCallback |
function |
core/lib/Drupal/Core/Render/Element/Select.php |
Determines how user input is mapped to an element's #value property. |
| Select::__clone |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Implements the magic __clone function. |
| Select::__construct |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Constructs a Select object. |
| Select::__toString |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Implements PHP magic __toString method to convert the query to a string. |
| SelectCloneTest |
class |
core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php |
Tests cloning Select queries. |
| SelectCloneTest.php |
file |
core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php |
|
| SelectCloneTest::testNestedQueryCloning |
function |
core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php |
Tests that nested SELECT queries are cloned properly. |
| SelectCloneTest::testSelectConditionSubQueryCloning |
function |
core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php |
Tests that subqueries as value within conditions are cloned properly. |
| SelectComplexTest |
class |
core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php |
Tests the Select query builder with more complex queries. |
| SelectComplexTest.php |
file |
core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php |
|
| SelectComplexTest::$modules |
property |
core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php |
Modules to install. |
| SelectComplexTest::testCountQuery |
function |
core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php |
Tests that we can generate a count query from a built query. |