delete method
Sets the query to be a DELETE operation.
Returns this
to enable method chaining.
Example:
query.delete().from(QField('users')); // Creates DELETE FROM users query
Implementation
Sqler delete() {
_delete = true;
return this;
}