Where adds a WHERE clause.
(text string, params ...any)
| 136 | |
| 137 | // Where adds a WHERE clause. |
| 138 | func (q *Query) Where(text string, params ...any) *Query { |
| 139 | return q.Join(" WHERE ", text, params...) |
| 140 | } |
| 141 | |
| 142 | // Len returns the number of parts in the query. |
| 143 | func (q *Query) Len() int { |