Documentation ¶
Index ¶
- Constants
- type Where
- func Between(column string, v1, v2 interface{}) *Where
- func Eq(column string, value interface{}) *Where
- func Gt(column string, value interface{}) *Where
- func Gte(column string, value interface{}) *Where
- func In(column string, value interface{}) *Where
- func IsNotNull(column string) *Where
- func IsNull(column string) *Where
- func Like(column string, value interface{}) *Where
- func Lt(column string, value interface{}) *Where
- func Lte(column string, value interface{}) *Where
- func Neq(column string, value interface{}) *Where
- func NotIn(column string, value interface{}) *Where
- type 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.