场景说明:
现在有一张表table_a,有字段a,b,c,d 现在需要对字段a和b进行去重计数,如果使用语句:
select count(distinct(a, b)) from table_a;
那么执行后会报错:
> 1241 - Operand should contain 1 column(s)
解决方法:
方法1:直接使用distinct方法
select count(distinct a, b) from table_a;
方法2:distinct把a和b拼起来后的字段
SELECT COUNT(DISTINCT CONCAT(, ':', )) FROM table_a;