public function Select::having

File

drupal/core/lib/Drupal/Core/Database/Query/Select.php, line 284
Definition of Drupal\Core\Database\Query\Select

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

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