Select returns a SelectBuilder for this StatementBuilderType.
(columns ...string)
| 7 | |
| 8 | // Select returns a SelectBuilder for this StatementBuilderType. |
| 9 | func (b StatementBuilderType) Select(columns ...string) SelectBuilder { |
| 10 | return SelectBuilder(b).Columns(columns...) |
| 11 | } |
| 12 | |
| 13 | // Insert returns a InsertBuilder for this StatementBuilderType. |
| 14 | func (b StatementBuilderType) Insert(into string) InsertBuilder { |
no test coverage detected