Insert creates a builder for the `INSERT INTO` statement. Insert("users"). Columns("name", "age"). Values("a8m", 10). Values("foo", 20) Note: Insert inserts all values in one batch.
(table string)
| 157 | // |
| 158 | // Note: Insert inserts all values in one batch. |
| 159 | func Insert(table string) *InsertBuilder { return &InsertBuilder{table: table} } |
| 160 | |
| 161 | // Schema sets the database name for the insert table. |
| 162 | func (i *InsertBuilder) Schema(name string) *InsertBuilder { |
no outgoing calls
searching dependent graphs…