Expr returns an SQL expression that implements the Querier interface.
(exr string, args ...any)
| 2901 | |
| 2902 | // Expr returns an SQL expression that implements the Querier interface. |
| 2903 | func Expr(exr string, args ...any) Querier { return &expr{s: exr, args: args} } |
| 2904 | |
| 2905 | type expr struct { |
| 2906 | s string |
no outgoing calls
searching dependent graphs…