sql

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 29, 2025 License: MIT, Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	TmFmtWithMS = "2006-01-02 15:04:05.999"
	NullStr     = "NULL"
)
View Source
const (
	ColumnDeletedAt = "deleted_at"
	ColumnId        = "id"
	ColumnName      = "name"
)
View Source
const (
	ExprEqual    = " = ?"
	ExprNotEqual = " != ?"
	ExprGreater  = " > ?"
)
View Source
const (
	Insert    = "INSERT"
	Select    = "SELECT"
	Update    = "UPDATE"
	Delete    = "DELETE"
	LeftJoin  = "LEFT JOIN"
	RightJoin = "RIGHT JOIN"
	InnerJoin = "INNER JOIN"
	Limit     = `LIMIT %d`
	Offset    = `OFFSET %d`
	Limit1    = `LIMIT 1`
)
View Source
const (
	NotDeleted     = ColumnDeletedAt + " IS " + NullStr
	WithNotDeleted = ` AND ` + NotDeleted
)
View Source
const (
	IdEqual   = ColumnId + ExprEqual
	NameEqual = ColumnName + ExprEqual
)

Variables

This section is empty.

Functions

func ConvertParams added in v0.3.8

func ConvertParams(v interface{}, escaper string) string

func DeleteByIdSQL added in v0.3.8

func DeleteByIdSQL(tableName string) string

func DeleteSQL added in v0.3.8

func DeleteSQL(tableName, column string) string

func ExistsSQL added in v0.3.8

func ExistsSQL(tableName, column string, withDeletedAt bool) string

func ExistsSQLByFilterExprs added in v0.3.8

func ExistsSQLByFilterExprs(tableName string, filters FilterExprs) string

func ExistsSQLByQuerySQL added in v0.3.8

func ExistsSQLByQuerySQL(qsql string) string

Types

type FilterExpr added in v0.3.8

type FilterExpr struct {
	Field     string        `json:"field"`
	Operation Operation     `json:"method"`
	Value     []interface{} `json:"value"`
}

type FilterExprs added in v0.3.8

type FilterExprs []FilterExpr

func (FilterExprs) Build added in v0.3.8

func (f FilterExprs) Build() string

func (FilterExprs) BuildSQL added in v0.3.8

func (f FilterExprs) BuildSQL() (string, []interface{})

type Operation added in v0.3.8

type Operation int
const (
	OperationPlace Operation = iota
	Equal
	NotEqual
	Greater
	Less
	Between
	GreaterOrEqual
	LessOrEqual
	IsNotNull
	IsNull
	In
	NotIn
	LIKE
)

func (Operation) SQL added in v0.3.8

func (m Operation) SQL() string

func (Operation) String added in v0.3.8

func (m Operation) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL