Where adds WHERE expressions to the query. See SelectBuilder.Where for more information.
(pred interface{}, args ...interface{})
| 259 | // |
| 260 | // See SelectBuilder.Where for more information. |
| 261 | func (b UpdateBuilder) Where(pred interface{}, args ...interface{}) UpdateBuilder { |
| 262 | return builder.Append(b, "WhereParts", newWherePart(pred, args...)).(UpdateBuilder) |
| 263 | } |
| 264 | |
| 265 | // OrderBy adds ORDER BY expressions to the query. |
| 266 | func (b UpdateBuilder) OrderBy(orderBys ...string) UpdateBuilder { |