Join adds a JOIN clause to the query.
(join string, rest ...interface{})
| 296 | |
| 297 | // Join adds a JOIN clause to the query. |
| 298 | func (b SelectBuilder) Join(join string, rest ...interface{}) SelectBuilder { |
| 299 | return b.JoinClause("JOIN "+join, rest...) |
| 300 | } |
| 301 | |
| 302 | // LeftJoin adds a LEFT JOIN clause to the query. |
| 303 | func (b SelectBuilder) LeftJoin(join string, rest ...interface{}) SelectBuilder { |