Versions in this module Expand all Collapse all v0 v0.0.1 Jul 6, 2019 Changes in this version + type SQLFragment struct + func DeleteFrom(table string) *SQLFragment + func InsertInto(table string) *SQLFragment + func Select(columns ...string) *SQLFragment + func Update(table string) *SQLFragment + func (f *SQLFragment) And() *SQLFragment + func (f *SQLFragment) Asc() *SQLFragment + func (f *SQLFragment) Desc() *SQLFragment + func (f *SQLFragment) From(table string) *SQLFragment + func (f *SQLFragment) GroupBy(columns ...string) *SQLFragment + func (f *SQLFragment) Having(condition string) *SQLFragment + func (f *SQLFragment) Hook(hookFunc func(*SQLFragment) *SQLFragment) *SQLFragment + func (f *SQLFragment) InnerJoin(join string) *SQLFragment + func (f *SQLFragment) IntoColumns(columns ...string) *SQLFragment + func (f *SQLFragment) IntoValues(values ...string) *SQLFragment + func (f *SQLFragment) Join(join string) *SQLFragment + func (f *SQLFragment) LeftJoin(join string) *SQLFragment + func (f *SQLFragment) Limit(limit int64) *SQLFragment + func (f *SQLFragment) Offset(offset int64) *SQLFragment + func (f *SQLFragment) Or() *SQLFragment + func (f *SQLFragment) OrderBy(columns ...string) *SQLFragment + func (f *SQLFragment) RightJoin(join string) *SQLFragment + func (f *SQLFragment) Select(columns ...string) *SQLFragment + func (f *SQLFragment) Set(column string, value string) *SQLFragment + func (f *SQLFragment) String() string + func (f *SQLFragment) Where(condition string) *SQLFragment