clearWhere method

Sqler clearWhere()

Clears all WHERE conditions from the query.

Returns this to enable method chaining.

Example:

query.clearWhere(); // Removes all WHERE conditions

Implementation

Sqler clearWhere() {
  _where = [];
  return this;
}