clearGroupBy method
Clears all GROUP BY fields from the query.
Returns this
to enable method chaining.
Example:
query.clearGroupBy(); // Removes all GROUP BY fields
Implementation
Sqler clearGroupBy() {
_groupBy = [];
return this;
}
Clears all GROUP BY fields from the query.
Returns this
to enable method chaining.
Example:
query.clearGroupBy(); // Removes all GROUP BY fields
Sqler clearGroupBy() {
_groupBy = [];
return this;
}