squirrel icon indicating copy to clipboard operation
squirrel copied to clipboard

Fluent SQL generation for golang

Results 94 squirrel issues
Sort by recently updated
recently updated
newest added

Hello, not sure if this is expected? [https://go.dev/play/p/yMEuRKDSOSI](https://go.dev/play/p/yMEuRKDSOSI) ```go package main import ( "fmt" sq "github.com/Masterminds/squirrel" ) func getFilter() sq.Or { return nil } func main() { users := sq.Select("*").From("users").Where(getFilter())...

This PR adds a new argument to the `From` method in the UpdateBuilder structure in Squirrel. Currently, using the `UPDATE ... FROM ... VALUES` construction is only possible by manually...

First of all, thank you for maintaining this cool project! This PR introduces support for building `MERGE` statements, which were added to PostgreSQL starting from version 15. The new builder...

If you authorize me, I will create a pull request for a schema validator, so that in queries, in addition to the column name, we can specify the exact data...