sql
AI时代光年
互联网大厂经验,上海交通大学MBA,提供职场和心理辅导
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Yearning SQL审核平台(只供个人记录,待研究,大家不要点击查看了)
Yearning SQL审核平台:http://yearning.io/原创 2020-04-28 18:27:46 · 1003 阅读 · 0 评论 -
sql 中count(*)、count(1)和count(col)区别
性能问题 1.任何情况下select count(*) from tableName是最优选择; 2.尽量减少select count(*) from tableName where col = ‘value’ 这种查询; 3.杜绝select count(col) from tableName where col2 = ‘value’ 的出现.原创 2018-01-24 13:53:52 · 1291 阅读 · 0 评论
分享