sel method

Find sel(
  1. String column, {
  2. String? alias,
  3. String? table,
})

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;
}