selectAll method

SqlBuilder selectAll()

Select all columns (*)

Implementation

SqlBuilder selectAll() {
  _columns.add('*');
  return this;
}