怎么用sql统计编码个数(相同的算一个)?比如这个应该是2,我用的count出来是3
count(distinct(a))
group by 物料编码了吗
count(distinct 编码) distinct 是去重的
单元格统计;先去重,再统计:count(UNIQUEARRAY(单元格))
select distinct count(*) from 表名 group by 物料编码