最近开源了 gosql 一款 golang style 语法的 golang orm 库.
https://github.com/rushteam/gosql
优雅的语法,支持批量插入,轻松嵌套条件,处理各种复杂的查询 sql,诸如: and 和 or 组合 全语法支持: for update 锁,is null, exists 子查询等基本上所有 sql 语法
求波关注,star
user := &UserModel{}
err := db.Fetch(user,
gosql.Columns("id","name"),
gosql.Where("id", 1),
gosql.Where("[like]name", "j%")
gosql.OrWhere(func(s *Clause) {
s.Where("[>=]score", "90")
s.Where("[<=]age", "100")
}),
GroupBy("type"),
OrderBy("score DESC"),
)
https://github.com/rushteam/gosql
更多详情可以看文档,更多细节可以看代码