代码拉取完成,页面将自动刷新
package wrapper
import (
"gitee.com/h79/goutils/dao/option"
"strings"
)
var _ ISelect = (*Select)(nil)
type Select struct {
query []string
}
func (sel *Select) Clone() *Select {
return &Select{query: sel.query}
}
func (sel *Select) Delete(column string) *Select {
for i := range sel.query {
if sel.query[i] == column {
sel.query = append(sel.query[:i], sel.query[i+1:]...)
break
}
}
return sel
}
func (sel *Select) Add(column string) *Select {
sel.query = append(sel.query, column)
return sel
}
func (sel *Select) Query() []string {
return sel.query
}
func (sel *Select) Is() bool {
if sel == nil {
return false
}
return len(sel.query) > 0
}
func (sel *Select) Value() []interface{} {
return nil
}
func (sel *Select) Build(opts ...option.Option) string {
return sel.build(option.FullSqlExist(opts...))
}
func (sel *Select) build(full bool) string {
count := 0
builder := strings.Builder{}
for i := range sel.query {
if len(sel.query[i]) > 0 {
if count == 0 {
if full {
builder.WriteString("SELECT ")
}
} else if count > 0 {
builder.WriteByte(',')
}
builder.WriteString(sel.query[i])
count++
}
}
return builder.String()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。