addSelect method
Adds a single SELECT field to the query.
select
The SELECT field to add.
Returns this
to enable method chaining.
Example:
query.addSelect(QSelect('name')); // Adds name field to SELECT
Implementation
Sqler addSelect(QSelectField select) {
_select.add(select);
return this;
}