MCPcopy
hub / github.com/Masterminds/squirrel / Into

Method Into

insert.go:245–247  ·  view source on GitHub ↗

Into sets the INTO clause of the query.

(from string)

Source from the content-addressed store, hash-verified

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

Callers 3

InsertMethod · 0.80
ReplaceMethod · 0.80
TestInsertBuilderToSqlFunction · 0.80

Calls 1

SetMethod · 0.80

Tested by 1

TestInsertBuilderToSqlFunction · 0.64