Intersect appends the INTERSECT clause to the query.
(t TableView)
| 2201 | |
| 2202 | // Intersect appends the INTERSECT clause to the query. |
| 2203 | func (s *Selector) Intersect(t TableView) *Selector { |
| 2204 | s.setOps = append(s.setOps, setOp{ |
| 2205 | Type: setOpTypeIntersect, |
| 2206 | TableView: t, |
| 2207 | }) |
| 2208 | return s |
| 2209 | } |
| 2210 | |
| 2211 | // IntersectAll appends the INTERSECT ALL clause to the query. |
| 2212 | func (s *Selector) IntersectAll(t TableView) *Selector { |
no outgoing calls