Suffix adds an expression to the end of the query
(sql string, args ...interface{})
| 279 | |
| 280 | // Suffix adds an expression to the end of the query |
| 281 | func (b UpdateBuilder) Suffix(sql string, args ...interface{}) UpdateBuilder { |
| 282 | return b.SuffixExpr(Expr(sql, args...)) |
| 283 | } |
| 284 | |
| 285 | // SuffixExpr adds an expression to the end of the query |
| 286 | func (b UpdateBuilder) SuffixExpr(expr Sqlizer) UpdateBuilder { |