function UpdateQuery::condition

Implements QueryConditionInterface::condition().

Parameters

$field: The name of the field to check. If you would like to add a more complex condition involving operators or functions, use where().

$value: The value to test the field against. In most cases, this is a scalar. For more complex options, it is an array. The meaning of each element in the array is dependent on the $operator.

$operator: The comparison operator, such as =, <, or >=. It also accepts more complex options such as IN, LIKE, or BETWEEN. Defaults to IN if $value is an array, and = otherwise.

Return value

QueryConditionInterface The called object.

Overrides QueryConditionInterface::condition

File

includes/database/query.inc, line 1037

Class

UpdateQuery
General class for an abstracted UPDATE operation.

Code

public function condition($field, $value = NULL, $operator = NULL) {
    $this->condition
        ->condition($field, $value, $operator);
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.