SelectExpr is like Select, but supports passing arbitrary expressions for SELECT clause.
(exprs ...Querier)
| 1737 | // SelectExpr is like Select, but supports passing arbitrary |
| 1738 | // expressions for SELECT clause. |
| 1739 | func SelectExpr(exprs ...Querier) *Selector { |
| 1740 | return (&Selector{}).SelectExpr(exprs...) |
| 1741 | } |
| 1742 | |
| 1743 | // selection represents a column or an expression selection. |
| 1744 | type selection struct { |
searching dependent graphs…