Table returns a new table selector. t1 := Table("users").As("u") return Select(t1.C("name"))
(name string)
| 1590 | // t1 := Table("users").As("u") |
| 1591 | // return Select(t1.C("name")) |
| 1592 | func Table(name string) *SelectTable { |
| 1593 | return &SelectTable{quote: true, name: name} |
| 1594 | } |
| 1595 | |
| 1596 | // Schema sets the schema name of the table. |
| 1597 | func (s *SelectTable) Schema(name string) *SelectTable { |
no outgoing calls
searching dependent graphs…