API16:JDatabaseQuery/having
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
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
Examples
<CodeExamplesForm />
