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