API16:JDatabaseQuery/having
From Joomla! Documentation
Description:JDatabaseQuery/having
Contents |
Syntax
having($conditions, $glue='AND')
| Parameter Name | Default Value | Description |
|---|---|---|
| $conditions | A string or array of columns | |
| $glue | 'AND' |
Defined in
libraries/joomla/database/databasequery.php
Importing
jimport( 'joomla.database.databasequery' );
Source Body
public function having($conditions, $glue='AND') { if (is_null($this->_having)) { $glue = strtoupper($glue); $this->_having = new JDatabaseQueryElement('HAVING', $conditions, " $glue "); } else { $this->_having->append($conditions); } return $this; }
[Edit See Also] SeeAlso:JDatabaseQuery/having