select method

SelectQuery select(
  1. List<String> columns
)

Select columns from the table

Implementation

SelectQuery select(List<String> columns) {
  return SelectQuery(_db, _table, columns);
}