select t.*,count(1) count from (select substr(字段名b,0,3) b from 表名) t group by t.字段名b order by 字段名b
--第一步截取字符串前三位substr 第二部进行分组排序
select t.*,count(1) count from (select substr(字段名b,0,3) b from 表名) t group by t.字段名b order by 字段名b
--第一步截取字符串前三位substr 第二部进行分组排序