SELECT method

Express SELECT(
  1. AnyList columns
)

Implementation

Express SELECT(AnyList columns) {
  this << "SELECT";
  if (columns.isEmpty) {
    this << "*";
  } else {
    this << columns;
  }
  return this;
}