From sets the source of `FROM` clause.
(t TableView)
| 1882 | |
| 1883 | // From sets the source of `FROM` clause. |
| 1884 | func (s *Selector) From(t TableView) *Selector { |
| 1885 | s.from = nil |
| 1886 | return s.AppendFrom(t) |
| 1887 | } |
| 1888 | |
| 1889 | // AppendFrom appends a new TableView to the `FROM` clause. |
| 1890 | func (s *Selector) AppendFrom(t TableView) *Selector { |