clearSelect method

Sqler clearSelect()

Clears all SELECT fields from the query.

Returns this to enable method chaining.

Example:

query.clearSelect(); // Removes all previously added SELECT fields

Implementation

Sqler clearSelect() {
  _select = [];
  return this;
}