clearHaving method

Sqler clearHaving()

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;
}