clearFrom method
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;
}
Clears all FROM tables from the query.
Returns this
to enable method chaining.
Example:
query.clearFrom(); // Removes all FROM tables
Sqler clearFrom() {
_from = [];
return this;
}