Documentation ¶
Index ¶
- Constants
- type Where
- type Wheres
- func (w *Wheres) Between(column string, v1, v2 interface{}) *Wheres
- func (w *Wheres) Eq(column string, value interface{}) *Wheres
- func (w *Wheres) Gt(column string, value interface{}) *Wheres
- func (w *Wheres) Gte(column string, value interface{}) *Wheres
- func (w *Wheres) In(column string, value interface{}) *Wheres
- func (w *Wheres) IsNotNull(column string) *Wheres
- func (w *Wheres) IsNull(column string) *Wheres
- func (w *Wheres) Like(column string, value interface{}) *Wheres
- func (w *Wheres) Lt(column string, value interface{}) *Wheres
- func (w *Wheres) Lte(column string, value interface{}) *Wheres
- func (w *Wheres) Neq(column string, value interface{}) *Wheres
- func (w *Wheres) NotIn(column string, value interface{}) *Wheres
Constants ¶
View Source
const ( IN = "IN" NotIN = "NOT IN" BETWEEN = "BETWEEN" LIKE = "LIKE" IsNULL = "IS NULL" IsNotNULL = "IS NOT NULL" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.