You are here

public function SelectQuery::having in Drupal 7

File

includes/database/select.inc, line 1128

Class

SelectQuery
Query builder for SELECT statements.

Code

public function having($snippet, $args = array()) {
  $this->having
    ->where($snippet, $args);
  return $this;
}