AppendSelectAs appends additional column to the SELECT statement with the given alias.
(column, as string)
| 1772 | |
| 1773 | // AppendSelectAs appends additional column to the SELECT statement with the given alias. |
| 1774 | func (s *Selector) AppendSelectAs(column, as string) *Selector { |
| 1775 | s.selection = append(s.selection, selection{c: column, as: as}) |
| 1776 | return s |
| 1777 | } |
| 1778 | |
| 1779 | // SelectExpr changes the columns selection of the SELECT statement |
| 1780 | // with custom list of expressions. |
no outgoing calls