Fluent SQL generation for golang
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
.gitignore Add .gitignore Jan 28, 2014
.travis.yml Travis: add go 1.10.x Jun 15, 2018
LICENSE.txt Convert empty array/slice in expr to "IN (NULL)" rather than erroring Feb 26, 2016
README.md Markdown is hard Aug 2, 2018
case.go Made What() method of CaseBuilder non-exported to simplify interface Feb 3, 2015
case_test.go 'Case()' uses all arguments Mar 1, 2015
delete.go Format code. May 8, 2017
delete_ctx.go Update Context support Aug 11, 2017
delete_ctx_test.go Update Context support Aug 11, 2017
delete_test.go Add 1.3 to travis config; fix order dependence in test Jun 26, 2014
expr.go sort eq and lt keys before toSql. To have consistency in toSql Aug 15, 2018
expr_test.go sort eq and lt keys before toSql. To have consistency in toSql Aug 15, 2018
insert.go InsertBuilder now supports INSERT ... SELECT form. May 8, 2017
insert_ctx.go Update Context support Aug 11, 2017
insert_ctx_test.go Go fmt Aug 23, 2017
insert_test.go InsertBuilder now supports INSERT ... SELECT form. May 8, 2017
integration_test.go Fix NotEq{"x": []interface{}} generation Aug 25, 2017
part.go Made part support Sqlizer, not only string Jan 20, 2015
placeholder.go Small optimization for placeholder generator. Jan 26, 2015
placeholder_test.go Small optimization for placeholder generator. Jan 26, 2015
row.go Prepare for release Jan 28, 2014
row_test.go Use assert in tests Feb 9, 2014
select.go fix: nested select placeholders numbering Jun 12, 2018
select_ctx.go Update Context support Aug 11, 2017
select_ctx_test.go Go fmt Aug 23, 2017
select_test.go fix: nested select placeholders numbering Jun 12, 2018
squirrel.go Minor documentation updates Aug 2, 2018
squirrel_ctx.go Update Context support Aug 11, 2017
squirrel_ctx_test.go Go fmt Aug 23, 2017
squirrel_test.go Move Context-related methods to 1.8+-specific files (with build tags) Aug 11, 2017
statement.go 'Case()' uses all arguments Mar 1, 2015
statement_test.go Select RunWith(*sql.Tx) supports QueryRow Aug 29, 2014
stmtcacher.go Update Context support Aug 11, 2017
stmtcacher_ctx.go Go fmt Aug 23, 2017
stmtcacher_ctx_test.go Update Context support Aug 11, 2017
stmtcacher_noctx.go Go fmt Aug 23, 2017
stmtcacher_test.go Use assert in tests Feb 9, 2014
update.go Add query api to update. Mar 24, 2016
update_ctx.go Update Context support Aug 11, 2017
update_ctx_test.go Go fmt Aug 23, 2017
update_test.go Add Prefix and Suffix methods Jun 18, 2014
where.go fix: nested select placeholders numbering Jun 12, 2018
where_test.go Convert empty array/slice in expr to "IN (NULL)" rather than erroring Feb 26, 2016

README.md

Squirrel - fluent SQL generator for Go

import "gopkg.in/Masterminds/squirrel.v1"

or if you prefer using master (which may be arbitrarily ahead of or behind v1):

NOTE: as of Go 1.6, go get correctly clones the Github default branch (which is v1 in this repo).

import "github.com/Masterminds/squirrel"

GoDoc Build Status

_Note: This project has moved from github.com/lann/squirrel to github.com/Masterminds/squirrel. Lann remains the architect of the project, but we're helping him curate.

Squirrel is not an ORM. For an application of Squirrel, check out structable, a table-struct mapper

Squirrel helps you build SQL queries from composable parts:

import sq "github.com/Masterminds/squirrel"

users := sq.Select("*").From("users").Join("emails USING (email_id)")

active := users.Where(sq.Eq{"deleted_at": nil})

sql, args, err := active.ToSql()

sql == "SELECT * FROM users JOIN emails USING (email_id) WHERE deleted_at IS NULL"
sql, args, err := sq.
    Insert("users").Columns("name", "age").
    Values("moe", 13).Values("larry", sq.Expr("? + 5", 12)).
    ToSql()

sql == "INSERT INTO users (name,age) VALUES (?,?),(?,? + 5)"

Squirrel can also execute queries directly:

stooges := users.Where(sq.Eq{"username": []string{"moe", "larry", "curly", "shemp"}})
three_stooges := stooges.Limit(3)
rows, err := three_stooges.RunWith(db).Query()

// Behaves like:
rows, err := db.Query("SELECT * FROM users WHERE username IN (?,?,?,?) LIMIT 3",
                      "moe", "larry", "curly", "shemp")

Squirrel makes conditional query building a breeze:

if len(q) > 0 {
    users = users.Where("name LIKE ?", fmt.Sprint("%", q, "%"))
}

Squirrel wants to make your life easier:

// StmtCache caches Prepared Stmts for you
dbCache := sq.NewStmtCacher(db)

// StatementBuilder keeps your syntax neat
mydb := sq.StatementBuilder.RunWith(dbCache)
select_users := mydb.Select("*").From("users")

Squirrel loves PostgreSQL:

psql := sq.StatementBuilder.PlaceholderFormat(sq.Dollar)

// You use question marks for placeholders...
sql, _, _ := psql.Select("*").From("elephants").Where("name IN (?,?)", "Dumbo", "Verna").ToSql()

/// ...squirrel replaces them using PlaceholderFormat.
sql == "SELECT * FROM elephants WHERE name IN ($1,$2)"


/// You can retrieve id ...
query := sq.Insert("nodes").
    Columns("uuid", "type", "data").
    Values(node.Uuid, node.Type, node.Data).
    Suffix("RETURNING \"id\"").
    RunWith(m.db).
    PlaceholderFormat(sq.Dollar)

query.QueryRow().Scan(&node.id)

You can escape question mask by inserting two question marks:

SELECT * FROM nodes WHERE meta->'format' ??| array[?,?]

will generate with the Dollar Placeholder:

SELECT * FROM nodes WHERE meta->'format' ?| array[$1,$2]

FAQ

  • How can I build an IN query on composite keys / tuples, e.g. WHERE (col1, col2) IN ((1,2),(3,4))? (#104)

    Squirrel does not explicitly support tuples, but you can get the same effect with e.g.:

    sq.Or{
      sq.Eq{"col1": 1, "col2": 2},
      sq.Eq{"col1": 3, "col2": 4}}
    WHERE (col1 = 1 AND col2 = 2) OR (col1 = 3 AND col2 = 4)

    (which should produce the same query plan as the tuple version)

  • Why doesn't Eq{"mynumber": []uint8{1,2,3}} turn into an IN query? (#114)

    Values of type []byte are handled specially by database/sql. In Go, byte is just an alias of uint8, so there is no way to distinguish []uint8 from []byte.

  • Some features are poorly documented!

    This isn't a frequent complaints section!

  • Some features are poorly documented?

    Yes. The tests should be considered a part of the documentation; take a look at those for ideas on how to express more complex queries.

License

Squirrel is released under the MIT License.