clearHaving method
Clears all HAVING conditions from the query.
Returns this
to enable method chaining.
Example:
query.clearHaving(); // Removes all HAVING conditions
Implementation
Sqler clearHaving() {
_having = [];
return this;
}
Clears all HAVING conditions from the query.
Returns this
to enable method chaining.
Example:
query.clearHaving(); // Removes all HAVING conditions
Sqler clearHaving() {
_having = [];
return this;
}