MCPcopy
hub / github.com/Masterminds/squirrel / Suffix

Method Suffix

update.go:281–283  ·  view source on GitHub ↗

Suffix adds an expression to the end of the query

(sql string, args ...interface{})

Source from the content-addressed store, hash-verified

279
280// Suffix adds an expression to the end of the query
281func (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
286func (b UpdateBuilder) SuffixExpr(expr Sqlizer) UpdateBuilder {

Calls 2

SuffixExprMethod · 0.95
ExprFunction · 0.85