sel method
Selects a column
to be fetched from the table
. Use alias
to alias
the column name.
Implementation
Find sel(String column, {String? alias, String? table}) {
String col = (table == null ? '' : table + '.') + column;
_column.add(SelColumn(col, alias));
return this;
}