Options adds keyword options before the INTO clause of the query.
(options ...string)
| 238 | |
| 239 | // Options adds keyword options before the INTO clause of the query. |
| 240 | func (b InsertBuilder) Options(options ...string) InsertBuilder { |
| 241 | return builder.Extend(b, "Options", options).(InsertBuilder) |
| 242 | } |
| 243 | |
| 244 | // Into sets the INTO clause of the query. |
| 245 | func (b InsertBuilder) Into(from string) InsertBuilder { |
no outgoing calls