格式:
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
效果: