InsertInto prepares and returns an Inserter targeted at the given table. Example: q := sqlbuilder.InsertInto("books").Columns(...).Values(...)
(table string)
| 65 | // |
| 66 | // q := sqlbuilder.InsertInto("books").Columns(...).Values(...) |
| 67 | InsertInto(table string) Inserter |
| 68 | |
| 69 | // DeleteFrom prepares a Deleter targeted at the given table. |
| 70 | // |
no outgoing calls