| 1 query.inc | public UpdateQuery::condition($field, $value = NULL, $operator = NULL) | 
Return value
Overrides QueryConditionInterface::condition
File
- core/includes/ database/ query.inc, line 1041 
- Non-specific Database query code. Used by all engines.
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;
}
