CrossJoin adds a CROSS JOIN clause to the query.
(join string, rest ...interface{})
| 316 | |
| 317 | // CrossJoin adds a CROSS JOIN clause to the query. |
| 318 | func (b SelectBuilder) CrossJoin(join string, rest ...interface{}) SelectBuilder { |
| 319 | return b.JoinClause("CROSS JOIN "+join, rest...) |
| 320 | } |
| 321 | |
| 322 | // Where adds an expression to the WHERE clause of the query. |
| 323 | // |