RightJoin adds a RIGHT JOIN clause to the query.
(join string, rest ...interface{})
| 306 | |
| 307 | // RightJoin adds a RIGHT JOIN clause to the query. |
| 308 | func (b SelectBuilder) RightJoin(join string, rest ...interface{}) SelectBuilder { |
| 309 | return b.JoinClause("RIGHT JOIN "+join, rest...) |
| 310 | } |
| 311 | |
| 312 | // InnerJoin adds a INNER JOIN clause to the query. |
| 313 | func (b SelectBuilder) InnerJoin(join string, rest ...interface{}) SelectBuilder { |