LeftJoin appends a `LEFT JOIN` clause to the statement.
(t TableView)
| 2094 | |
| 2095 | // LeftJoin appends a `LEFT JOIN` clause to the statement. |
| 2096 | func (s *Selector) LeftJoin(t TableView) *Selector { |
| 2097 | return s.join("LEFT JOIN", t) |
| 2098 | } |
| 2099 | |
| 2100 | // RightJoin appends a `RIGHT JOIN` clause to the statement. |
| 2101 | func (s *Selector) RightJoin(t TableView) *Selector { |