sql统计语句怎么写?如图
select
sum(case when 送货员 like '%张三%' then 1 else 0 end) as a,
sum(case when 送货员 like '%李四%' then 1 else 0 end) as b
from table
类似的方法
SELECT 送货员,count(ID)AS 次数 FROM 表 GROUP BY 送货员
你看这个是你想要的不,不过还需要调整下,因为你的送货员字段里是数组
写个函数分割下数据
多加了个ID字段