Builder

Package builder is a lightweight and fast SQL builder for Go and XORM. Make sure you have installed Go 1.8+ and then: go get xorm.io/builder Insert # sql, args, err := builder.Insert(Eq{"c": 1, "d": 2}).Into("table1").ToSQL() // INSERT INTO table1 SELECT * FROM table2 sql, err := builder.Insert().…