Select returns a new SelectBuilder, optionally setting some result columns. See SelectBuilder.Columns.
(columns ...string)
| 55 | // |
| 56 | // See SelectBuilder.Columns. |
| 57 | func Select(columns ...string) SelectBuilder { |
| 58 | return StatementBuilder.Select(columns...) |
| 59 | } |
| 60 | |
| 61 | // Insert returns a new InsertBuilder with the given table name. |
| 62 | // |
searching dependent graphs…