Documentation
¶
Index ¶
- Constants
- func AndEqual(column string) string
- func AndGreatThan(column string) string
- func AndGreatThanOrEqual(column string) string
- func AndIn(column string) string
- func AndLessThan(column string) string
- func AndLessThanOrEqual(column string) string
- func AndLike(column string) string
- func AndNoEqual(column string) string
- func AndNoLike(column string) string
- func AndNoNotIn(column string) string
- func CountColumn(column ...string) string
- func DimAll(s string) string
- func DimLeft(s string) string
- func DimRight(s string) string
- func Group(column ...string) string
- func OrderBy(orderByColumns ...OrderByModel) string
- func SelectColumn(tableName string, column ...string) string
- func SelectCount(childSql string, column ...string) string
- func SumColumn(column string) string
- type OrderByModel
Constants ¶
View Source
const ASC = "asc"
View Source
const DESC = "desc"
View Source
const Equal = "="
View Source
const GreatThan = ">"
View Source
const GreatThanOrEqual = ">="
View Source
const IN = "in"
View Source
const LessThan = "<"
View Source
const LessThanOrEqual = "<="
View Source
const Like = "like"
View Source
const NotEqual = "!="
View Source
const NotIN = "not in"
View Source
const NotLike = "not like"
View Source
const Where = "where"
Variables ¶
This section is empty.
Functions ¶
func AndGreatThan ¶ added in v0.0.56
func AndGreatThanOrEqual ¶ added in v0.0.56
func AndLessThan ¶ added in v0.0.56
func AndLessThanOrEqual ¶ added in v0.0.56
func AndNoEqual ¶ added in v0.0.56
func AndNoNotIn ¶ added in v0.0.56
func CountColumn ¶ added in v0.0.60
func OrderBy ¶ added in v0.0.58
func OrderBy(orderByColumns ...OrderByModel) string
func SelectColumn ¶ added in v0.0.59
func SelectCount ¶ added in v0.0.64
Types ¶
type OrderByModel ¶ added in v0.0.58
Click to show internal directories.
Click to hide internal directories.