yiGmMk / comment_blog

the comments of www_programnotes_cn
0 stars 0 forks source link

using gorm | ProgramNotes #39

Open yiGmMk opened 3 years ago

yiGmMk commented 3 years ago

https://blog.programnotes.cn/using-gorm/

CURDCreateUpdateRetrieveorder by 常用指定从数据库检索记录时的排序方式1234567891011db.Order("age desc, name").Find(&users)// SELECT * FROM users ORDER BY age desc, name;// 多个 orderdb.Order("age desc").Order("name").

yiGmMk commented 3 years ago

gorm 连接池复用设置: https://www.cnblogs.com/lanyangsh/p/12951188.html

yiGmMk commented 3 years ago

mysql https://zhuanlan.zhihu.com/p/355302417