Distict represents a DISTINCT clause DISTINCT is used to ask the database to return only values that are different.
(columns ...interface{})
| 75 | // DISTINCT is used to ask the database to return only values that are |
| 76 | // different. |
| 77 | Distinct(columns ...interface{}) Selector |
| 78 | |
| 79 | // As defines an alias for a table. |
| 80 | As(string) Selector |
no outgoing calls