SelectQuery::havingCompile |
core/includes/database/select.inc |
Implements QueryConditionInterface::havingCompile(). |
SelectQuery::havingCondition |
core/includes/database/select.inc |
Implements QueryConditionInterface::havingCondition(). |
SelectQuery::havingConditions |
core/includes/database/select.inc |
Implements QueryConditionInterface::havingConditions(). |
SelectQuery::havingExists |
core/includes/database/select.inc |
Implements QueryExtendableInterface::havingExists(). |
SelectQuery::havingIsNotNull |
core/includes/database/select.inc |
Implements QueryExtendableInterface::havingIsNotNull(). |
SelectQuery::havingIsNull |
core/includes/database/select.inc |
Implements QueryExtendableInterface::havingIsNull(). |
SelectQuery::havingNotExists |
core/includes/database/select.inc |
Implements QueryExtendableInterface::havingNotExists(). |
SelectQuery::innerJoin |
core/includes/database/select.inc |
Implements SelectQueryInterface::innerJoin(). |
SelectQuery::isNotNull |
core/includes/database/select.inc |
Implements QueryConditionInterface::isNotNull(). |
SelectQuery::isNull |
core/includes/database/select.inc |
Implements QueryConditionInterface::isNull(). |
SelectQuery::isPrepared |
core/includes/database/select.inc |
Implements SelectQueryInterface::isPrepared(). |
SelectQuery::join |
core/includes/database/select.inc |
Implements SelectQueryInterface::join(). |
SelectQuery::leftJoin |
core/includes/database/select.inc |
Implements SelectQueryInterface::leftJoin(). |
SelectQuery::notExists |
core/includes/database/select.inc |
Implements QueryConditionInterface::notExists(). |
SelectQuery::orderBy |
core/includes/database/select.inc |
Implements SelectQueryInterface::orderBy(). |
SelectQuery::orderRandom |
core/includes/database/select.inc |
Implements SelectQueryInterface::orderRandom(). |
SelectQuery::preExecute |
core/includes/database/select.inc |
Implements SelectQueryInterface::preExecute(). |
SelectQuery::range |
core/includes/database/select.inc |
Implements SelectQueryInterface::range(). |
SelectQuery::rightJoin |
core/includes/database/select.inc |
Implements SelectQueryInterface::rightJoin(). |
SelectQuery::union |
core/includes/database/select.inc |
Implements SelectQueryInterface::union(). |
SelectQuery::where |
core/includes/database/select.inc |
Implements QueryConditionInterface::where(). |
SelectQuery::__clone |
core/includes/database/select.inc |
Implements the magic __clone function. |
SelectQuery::__construct |
core/includes/database/select.inc |
Constructs a Query object. |
SelectQuery::__toString |
core/includes/database/select.inc |
Implements PHP magic __toString method to convert the query to a string. |
SelectQueryExtender::addExpression |
core/includes/database/select.inc |
Adds an expression to the list of "fields" to be selected. |
SelectQueryExtender::addField |
core/includes/database/select.inc |
Adds a field to the list to be SELECTed. |
SelectQueryExtender::addJoin |
core/includes/database/select.inc |
Join against another table in the database. |
SelectQueryExtender::addMetaData |
core/includes/database/select.inc |
Adds additional metadata to the query. |
SelectQueryExtender::addTag |
core/includes/database/select.inc |
Adds a tag to a query. |
SelectQueryExtender::arguments |
core/includes/database/select.inc |
Gets a complete list of all values to insert into the prepared statement. |
SelectQueryExtender::compile |
core/includes/database/select.inc |
Compiles the saved conditions for later retrieval. |
SelectQueryExtender::compiled |
core/includes/database/select.inc |
Check whether a condition has been previously compiled. |
SelectQueryExtender::condition |
core/includes/database/select.inc |
Helper function: builds the most common conditional clauses. |
SelectQueryExtender::conditions |
core/includes/database/select.inc |
Gets a complete list of all conditions in this conditional clause. |
SelectQueryExtender::countQuery |
core/includes/database/select.inc |
Get the equivalent COUNT query of this query as a new query object. |
SelectQueryExtender::distinct |
core/includes/database/select.inc |
Sets this query to be DISTINCT. |
SelectQueryExtender::execute |
core/includes/database/select.inc |
Implements SelectQueryInterface::execute(). |
SelectQueryExtender::exists |
core/includes/database/select.inc |
Sets a condition that the specified subquery returns values. |
SelectQueryExtender::extend |
core/includes/database/select.inc |
Enhance this object by wrapping it in an extender object. |
SelectQueryExtender::fields |
core/includes/database/select.inc |
Add multiple fields from the same table to be selected. |
SelectQueryExtender::forUpdate |
core/includes/database/select.inc |
Add FOR UPDATE to the query. |
SelectQueryExtender::getArguments |
core/includes/database/select.inc |
Compiles and returns an associative array of the arguments for this prepared statement. |
SelectQueryExtender::getExpressions |
core/includes/database/select.inc |
Returns a reference to the expressions array for this query. |
SelectQueryExtender::getFields |
core/includes/database/select.inc |
Returns a reference to the fields array for this query. |
SelectQueryExtender::getGroupBy |
core/includes/database/select.inc |
Returns a reference to the group-by array for this query. |
SelectQueryExtender::getMetaData |
core/includes/database/select.inc |
Retrieves a given piece of metadata. |
SelectQueryExtender::getOrderBy |
core/includes/database/select.inc |
Returns a reference to the order by array for this query. |
SelectQueryExtender::getTables |
core/includes/database/select.inc |
Returns a reference to the tables array for this query. |
SelectQueryExtender::getUnion |
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. |
SelectQueryExtender::groupBy |
core/includes/database/select.inc |
Groups the result set by the specified field. |