clearFrom method

Sqler clearFrom()

Clears all FROM tables from the query.

Returns this to enable method chaining.

Example:

query.clearFrom(); // Removes all FROM tables

Implementation

Sqler clearFrom() {
  _from = [];
  return this;
}