Sql::$where |
property |
drupal/core/modules/views/lib/Drupal/views/Plugin/views/query/Sql.php |
An array of sections of the WHERE query. Each section is in itself
an array of pieces and a flag as to whether or not it should be AND
or OR. |
Merge::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/Merge.php |
Implements Drupal\Core\Database\Query\ConditionInterface::where(). |
Update::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/Update.php |
Implements Drupal\Core\Database\Query\ConditionInterface::where(). |
Delete::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/Delete.php |
Implements Drupal\Core\Database\Query\ConditionInterface::where(). |
Select::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/Select.php |
Adds an arbitrary WHERE clause to the query. |
Sql::add_where |
function |
drupal/core/modules/views/lib/Drupal/views/Plugin/views/query/Sql.php |
Add a simple WHERE clause to the query. The caller is responsible for
ensuring that all fields are fully qualified (TABLE.FIELD) and that
the table already exists in the query. |
Select::$where |
property |
drupal/core/lib/Drupal/Core/Database/Query/Select.php |
The conditional object for the WHERE clause. |
Criteria::where |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Criteria.php |
Set the where expression to evaluate when this criteria is searched for. |
Condition::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/Condition.php |
Implements Drupal\Core\Database\Query\ConditionInterface::where(). |
Criteria::orWhere |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Criteria.php |
Append the where expression to evaluate when this criteria is searched for
using an OR with previous expression. |
Criteria::andWhere |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Criteria.php |
Append the where expression to evaluate when this criteria is searched for
using an AND with previous expression. |
Sql::get_where_args |
function |
drupal/core/modules/views/lib/Drupal/views/Plugin/views/query/Sql.php |
Get the arguments attached to the WHERE and HAVING clauses of this query. |
QueryTest::add_where |
function |
drupal/core/modules/views/tests/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php |
|
SelectExtender::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/SelectExtender.php |
Adds an arbitrary WHERE clause to the query. |
CriteriaTest::testWhere |
function |
drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/CriteriaTest.php |
|
ConditionInterface::where |
function |
drupal/core/lib/Drupal/Core/Database/Query/ConditionInterface.php |
Adds an arbitrary WHERE clause to the query. |
CriteriaTest::testOrWhere |
function |
drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/CriteriaTest.php |
|
Sql::add_where_expression |
function |
drupal/core/modules/views/lib/Drupal/views/Plugin/views/query/Sql.php |
Add a complex WHERE clause to the query. |
CriteriaTest::testAndWhere |
function |
drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/CriteriaTest.php |
|
UpdateTest::testWhereUpdate |
function |
drupal/core/modules/system/lib/Drupal/system/Tests/Database/UpdateTest.php |
Confirms that we can update multiple records with a where call. |
Criteria::getWhereExpression |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Criteria.php |
Get the expression attached to this criteria. |
QueryPluginBase::set_where_group |
function |
drupal/core/modules/views/lib/Drupal/views/Plugin/views/query/QueryPluginBase.php |
Create a new grouping for the WHERE or HAVING clause. |
UpdateTest::testWhereAndConditionUpdate |
function |
drupal/core/modules/system/lib/Drupal/system/Tests/Database/UpdateTest.php |
Confirms that we can stack condition and where calls. |