SQL如何查询出某一列中不同值出现的次数?

格式:

select A, count(*) as num from test2 group by A

应用:

统计超时接口出现的次数,并按出现次数降序

select   api_purpose,count(api_purpose)  as count_time_out from response_time
where run_time like "%2020-05-09%"
group by api_purpose
order by count_time_out desc 

效果:

 

posted @ 2020-05-09 16:38  wangju003  阅读(2002)  评论(0编辑  收藏  举报