Add adds a numeric value to the given column.
(column string, v any)
| 402 | |
| 403 | // Add adds a numeric value to the given column. |
| 404 | func (u *UpdateSet) Add(column string, v any) *UpdateSet { |
| 405 | u.UpdateBuilder.Add(column, v) |
| 406 | return u |
| 407 | } |
| 408 | |
| 409 | // SetNull sets a column as null value. |
| 410 | func (u *UpdateSet) SetNull(column string) *UpdateSet { |
no outgoing calls