From represents a FROM clause and is tipically used after Columns(). FROM defines from which table data is going to be retrieved s.Columns(...).From("people") It is also possible to use an alias for the table, this could be handy if you plan to use the alias later: s.Columns(...).From("people AS
(tables ...interface{})
| 69 | // |
| 70 | // s.Columns(...).From("people p").Where("p.name = ?", ...) |
| 71 | From(tables ...interface{}) Selector |
| 72 | |
| 73 | // Distict represents a DISTINCT clause |
| 74 | // |
no outgoing calls