1 select.inc public SelectQuery::havingCondition($field, $value = NULL, $operator = NULL)

Implements QueryConditionInterface::havingCondition().

Return value

SelectQuery:

Overrides SelectQueryInterface::havingCondition

File

core/includes/database/select.inc, line 1204

Class

SelectQuery
Query builder for SELECT statements.

Code

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