Into sets the INTO clause of the query.
(from string)
| 243 | |
| 244 | // Into sets the INTO clause of the query. |
| 245 | func (b InsertBuilder) Into(from string) InsertBuilder { |
| 246 | return builder.Set(b, "Into", from).(InsertBuilder) |
| 247 | } |
| 248 | |
| 249 | // Columns adds insert columns to the query. |
| 250 | func (b InsertBuilder) Columns(columns ...string) InsertBuilder { |