andHaving() public method
Adds an additional HAVING condition to the existing one.
The new condition and the existing one will be joined using the 'AND' operator.
See also:
public $this andHaving ( $condition, $params = [] ) | ||
---|---|---|
$condition | string|array|yii\db\Expression |
The new HAVING condition. Please refer to where() on how to specify this parameter. |
$params | array |
The parameters (name => value) to be bound to the query. |
return | $this |
The query object itself |
Please login to continue.