Go随手记
gorm 执行 raw sql,Exec 好像是不行的,得用 Raw
需要拼接 sql 的话,比如 pg 里批量 insert/update/delete,可以参考https://github.com/huandu/go-sqlbuilder/blob/master/interpolate.go,然后自己手写一个,因为它支持的 type 确实少
Go随手记
https://hunsh.net/archives/92/
gorm 执行 raw sql,Exec 好像是不行的,得用 Raw
需要拼接 sql 的话,比如 pg 里批量 insert/update/delete,可以参考https://github.com/huandu/go-sqlbuilder/blob/master/interpolate.go,然后自己手写一个,因为它支持的 type 确实少