1. 首页
  2. 数据库
  3. 其它
  4. 单个select语句实现MySQL查询统计次数

单个select语句实现MySQL查询统计次数

上传者: 2021-01-31 02:54:04上传 PDF文件 43.64KB 热度 21次
单个select语句实现MySQL查询统计次数 单个select语句实现MySQL查询统计次数的方法用处在哪里呢?用处太多了,比如一个成绩单,你要查询及格得人数与不及格的人数,怎么一次查询出来?MySQL查询统计次数简单的语句肯定是这样了: 代码如下:select a.name,count_neg,count_plus from (select count(id) as count_plus,name from score2 where score >=60 group by name) a, (select count(id) as count_neg,name from sco
用户评论