Table sets the table to be updated.
(table string)
| 218 | |
| 219 | // Table sets the table to be updated. |
| 220 | func (b UpdateBuilder) Table(table string) UpdateBuilder { |
| 221 | return builder.Set(b, "Table", table).(UpdateBuilder) |
| 222 | } |
| 223 | |
| 224 | // Set adds SET clauses to the query. |
| 225 | func (b UpdateBuilder) Set(column string, value interface{}) UpdateBuilder { |