Echarts 统计分数区间数据
Posted zoli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Echarts 统计分数区间数据相关的知识,希望对你有一定的参考价值。
select ‘60分以下‘,count(*) from riskcontrol_inspection_task_book_item where (check_Value +0)<60 and (check_Value REGEXP ‘[^0-9.]‘)=0
union
select ‘60-70分‘,count(*) from riskcontrol_inspection_task_book_item where (check_Value +0)>=60 and (check_Value +0)<70 and (check_Value REGEXP ‘[^0-9.]‘)=0
union
select ‘70-90分‘,count(*) from riskcontrol_inspection_task_book_item where (check_Value +0)>=70 and (check_Value +0)<90 and (check_Value REGEXP ‘[^0-9.]‘)=0
union
select ‘90分以上‘,count(*) from riskcontrol_inspection_task_book_item where (check_Value +0)>=90 and (check_Value REGEXP ‘[^0-9.]‘)=0
SQL UNION 操作符合并两个或多个 SELECT 语句的结果。
以上是关于Echarts 统计分数区间数据的主要内容,如果未能解决你的问题,请参考以下文章