SetDistinct sets explicitly if the returned rows are distinct or indistinct.
(v bool)
| 1918 | |
| 1919 | // SetDistinct sets explicitly if the returned rows are distinct or indistinct. |
| 1920 | func (s *Selector) SetDistinct(v bool) *Selector { |
| 1921 | s.distinct = v |
| 1922 | return s |
| 1923 | } |
| 1924 | |
| 1925 | // Limit adds the `LIMIT` clause to the `SELECT` statement. |
| 1926 | func (s *Selector) Limit(limit int) *Selector { |
no outgoing calls