Go Database query builder library
- Selects, Ordering, Limit & Offset
- GroupBy / Having
- Where, AndWhere, OrWhere clauses
- WhereIn / WhereNotIn
- WhereNull / WhereNotNull
- Left / Right / Cross / Inner / Left Outer Joins
- Inserts
- Updates
- Delete
- Drop, Truncate, Rename
- Increment & Decrement
- Union / Union All
- Transaction mode
- Dump, Dd
- Check if table exists
- Check if columns exist in a table within schema
- Retrieving A Single Row / Column From A Table
- WhereExists / WhereNotExists
- Determining If Records Exist
- Aggregates
- Create table
- Add / Modify / Drop columns
- Chunking Results
You may not always want to select all columns from a database table. Using the select method, you can specify a custom select clause for the query:
package yourpackage
import (
_ "github.com/lib/pq"
"buildsqlx"
)
var db = buildsqlx.NewDb(buildsqlx.NewConnection("postgres", "user=postgres dbname=postgres password=postgres sslmode=disable"))
func main() {
qDb := db.Table("posts").Select("title", "body")
// If you already have a query builder instance and you wish to add a column to its existing select clause, you may use the addSelect method:
res, err := qDb.AddSelect("points").GroupBy("topic").OrderBy("points", "DESC").Limit(15).Offset(5).Get()
}
res, err = db.Table("users").Select("name", "post", "user_id").InRandomOrder().Get()
The GroupBy and Having methods may be used to group the query results. The having method's signature is similar to that of the where method:
res, err := db.table("users").GroupBy("account_id").Having("account_id", ">", 100).Get()
You may use the where method on a query builder instance to add where clauses to the query. The most basic call to where requires three arguments. The first argument is the name of the column. The second argument is an operator, which can be any of the database's supported operators. Finally, the third argument is the value to evaluate against the column.
package yourpackage
import (
_ "github.com/lib/pq"
"buildsqlx"
)
func main() {
res, err := db.Table("table1").Select("foo", "bar", "baz").Where("foo", "=", cmp).AndWhere("bar", "!=", "foo").OrWhere("baz", "=", 123).Get()
}
You may chain where constraints together as well as add or clauses to the query. The orWhere method accepts the same arguments as the where method.
The whereIn method verifies that a given column's value is contained within the given slice:
res, err := db.Table("table1").WhereIn("id", []int64{1, 2, 3}).OrWhereIn("name", []string{"John", "Paul"}).Get()
The whereNull method verifies that the value of the given column is NULL:
res, err := db.Table("posts").WhereNull("points").OrWhereNotNull("title").Get()
The query builder may also be used to write join statements. To perform a basic "inner join", you may use the InnerJoin method on a query builder instance. The first argument passed to the join method is the name of the table you need to join to, while the remaining arguments specify the column constraints for the join. You can even join to multiple tables in a single query:
res, err := db.Table("users").Select("name", "post", "user_id").LeftJoin("posts", "users.id", "=", "posts.user_id").Get()
The query builder also provides an insert method for inserting records into the database table. The insert method accepts a map of column names and values:
package yourpackage
import (
_ "github.com/lib/pq"
"buildsqlx"
)
func main() {
// insert without getting id
err := db.Table("table1").Insert(map[string]interface{}{"foo": "foo foo foo", "bar": "bar bar bar", "baz": int64(123)})
// insert returning id
id, err := db.Table("table1").InsertGetId(map[string]interface{}{"foo": "foo foo foo", "bar": "bar bar bar", "baz": int64(123)})
// batch insert
err := db.Table("table1").InsertBatch([]map[string]interface{}{
0: {"foo": "foo foo foo", "bar": "bar bar bar", "baz": 123},
1: {"foo": "foo foo foo foo", "bar": "bar bar bar bar", "baz": 1234},
2: {"foo": "foo foo foo foo foo", "bar": "bar bar bar bar bar", "baz": 12345},
})
}
In addition to inserting records into the database, the query builder can also update existing records using the update method. The update method, like the insert method, accepts a slice of column and value pairs containing the columns to be updated. You may constrain the update query using where clauses:
rows, err := db.Table("posts").Where("points", ">", 3).Update(map[string]interface{}{"title": "awesome"})
The query builder may also be used to delete records from the table via the delete method. You may constrain delete statements by adding where clauses before calling the delete method:
rows, err := db.Table("posts").Where("points", "=", 123).Delete()
package yourpackage
import (
_ "github.com/lib/pq"
"buildsqlx"
)
func main() {
db.Drop("table_name")
db.DropIfExists("table_name")
db.Truncate("table_name")
db.Rename("table_name1", "table_name2")
}
The query builder also provides convenient methods for incrementing or decrementing the value of a given column. This is a shortcut, providing a more expressive and terse interface compared to manually writing the update statement.
Both of these methods accept 2 arguments: the column to modify, a second argument to control the amount by which the column should be incremented or decremented:
db.Table("users").Increment("votes", 3)
db.Table("users").Decrement("votes", 1)
The query builder also provides a quick way to "union" two queries together. For example, you may create an initial query and use the union method to union it with a second query:
union := db.Table("posts").Select("title", "likes").Union()
res, err := union.Table("users").Select("name", "points").Get()
// or if UNION ALL is of need
// union := db.Table("posts").Select("title", "likes").UnionAll()
You can run arbitrary queries mixed with any code in transaction mode getting an error and as a result rollback if something went wrong or committed if everything is ok:
err := db.InTransaction(func() (interface{}, error) {
return db.Table("users").Select("name", "post", "user_id").Get()
})
You may use the Dd or Dump methods while building a query to dump the query bindings and SQL. The dd method will display the debug information and then stop executing the request. The dump method will display the debug information but allow the request to keep executing:
package yourpackage
import (
_ "github.com/lib/pq"
"buildsqlx"
)
func main() {
// to print raw sql query to stdout
db.Table("table_name").Select("foo", "bar", "baz").Where("foo", "=", cmp).AndWhere("bar", "!=", "foo").Dump()
// or to print to stdout and exit a.k.a dump and die
db.Table("table_name").Select("foo", "bar", "baz").Where("foo", "=", cmp).AndWhere("bar", "!=", "foo").Dd()
}
tblExists, err := db.HasTable("public", "posts")
colsExists, err := db.HasColumns("public", "posts", "title", "user_id")
If you just need to retrieve a single row from the database table, you may use the First
func.
This method will return a single map[string]interface{}
:
res, err := db.Table("posts").Select("title").OrderBy("created_at", "desc").First()
// usage ex: res["title"]
If you don't even need an entire row, you may extract a single value from a record using the Value
method.
This method will return the value of the column directly:
res, err := db.Table("users").OrderBy("points", "desc").Value("name")
// res -> "Alex Shmidt"
The whereExists method allows you to write where exists SQL clauses. The whereExists method accepts a *DB argument, which will receive a query builder instance allowing you to define the query that should be placed inside of the "exists" clause:
res, er := db.Table("users").Select("name").WhereExists(
db.Table("users").Select("name").Where("points", ">=", int64(12345)),
).First()
Any query that is of need to build one can place inside WhereExists
clause/func.
The whereBetween func verifies that a column's value is between two values:
res, err := db.Table(UsersTable).Select("name").WhereBetween("points", 1233, 12345).Get()
The whereNotBetween func verifies that a column's value lies outside of two values:
res, err := db.Table(UsersTable).Select("name").WhereNotBetween("points", 123, 123456).Get()
Instead of using the count method to determine if any records exist that match your query's constraints, you may use the exists and doesntExist methods:
exists, err := db.Table(UsersTable).Select("name").Where("points", ">=", int64(12345)).Exists()
// use an inverse DoesntExists() if needed
The query builder also provides a variety of aggregate methods such as Count, Max, Min, Avg, and Sum. You may call any of these methods after constructing your query:
cnt, err := db.Table(UsersTable).WHere("points", ">=", 1234).Count()
avg, err := db.Table(UsersTable).Avg("points")
mx, err := db.Table(UsersTable).Max("points")
mn, err := db.Table(UsersTable).Min("points")
sum, err := db.Table(UsersTable).Sum("points")
To create a new database table, use the CreateTable method. The Schema method accepts two arguments. The first is the name of the table, while the second is an anonymous function/closure which receives a Table struct that may be used to define the new table:
res, err := db.Schema("big_tbl", func(table *Table) {
table.Increments("id")
table.String("title", 128).Default("The quick brown fox jumped over the lazy dog").Unique("idx_ttl")
table.SmallInt("cnt").Default(1)
table.Integer("points").NotNull()
table.BigInt("likes").Index("idx_likes")
table.Text("comment").Comment("user comment").Collation("de_DE")
table.DblPrecision("likes_to_points").Default(0.0)
table.Char("tag", 10)
table.DateTime("created_at", true)
table.DateTimeTz("updated_at", true)
table.Decimal("tax", 2, 2)
table.TsVector("body")
table.TsQuery("body_query")
table.Jsonb("settings")
table.Point("pt")
table.Polygon("poly")
table.TableComment("big table for big data")
})
// to make a foreign key constraint from another table
_, err = db.Schema("tbl_to_ref", func(table *Table) {
table.Increments("id")
table.Integer("big_tbl_id").ForeignKey("fk_idx_big_tbl_id", "big_tbl", "id")
// to add index on existing column just repeat stmt + index e.g.:
table.Char("tag", 10).Index("idx_tag")
table.Rename("settings", "options")
})
The Table structure in the Schema's 2nd argument may be used to update existing tables. Just the way you've been created it. The Change method allows you to modify some existing column types to a new type or modify the column's attributes.
res, err := db.Schema("tbl_name", func(table *Table) {
table.String("title", 128).Change()
})
Use DropColumn method to remove any column:
res, err := db.Schema("tbl_name", func(table *Table) {
table.DropColumn("deleted_at")
// To drop an index on the column
table.DropIndex("idx_title")
})
If you need to work with thousands of database records, consider using the chunk method. This method retrieves a small chunk of the results at a time and feeds each chunk into a closure for processing.
err = db.Table("user_achievements").Select("points").Where("id", "=", id).Chunk(100, func(users []map[string]interface{}) bool {
for _, m := range users {
if val, ok := m["points"];ok {
pointsCalc += diffFormula(val.(int64))
}
// or you can return false here to stop running chunks
}
return true
})
PS Why use buildsqlx? Because it is simple and fast, yet versatile. The performance achieved because of structs conversion lack, as all that you need is just a columns - u can get it from an associated array/map while the conversion itself and it's processing eats more CPU/memory resources.