Replace returns a new InsertBuilder with the statement keyword set to "REPLACE" and with the given table name. See InsertBuilder.Into.
(into string)
| 70 | // |
| 71 | // See InsertBuilder.Into. |
| 72 | func Replace(into string) InsertBuilder { |
| 73 | return StatementBuilder.Replace(into) |
| 74 | } |
| 75 | |
| 76 | // Update returns a new UpdateBuilder with the given table name. |
| 77 | // |
searching dependent graphs…