Selects a column to be fetched. Use alias to alias the column name.
column
alias
Find selAll([String? table]) { String col = (table == null ? '' : table + '.') + '*'; _column.add(SelColumn(col)); return this; }