| 1 query.inc | public DeleteQuery::condition($field, $value = NULL, $operator = NULL) | 
Return value
Overrides QueryConditionInterface::condition
File
- core/includes/ database/ query.inc, line 793 
- Non-specific Database query code. Used by all engines.
Class
- DeleteQuery
- General class for an abstracted DELETE operation.
Code
public function condition($field, $value = NULL, $operator = NULL) {
  $this->condition->condition($field, $value, $operator);
  return $this;
}
