Closed pengten closed 4 years ago
如SQL:select distinct a,b,c from table 之前生成后的countSql为: select count(distinct a) from table 正确应该为:select count(distinct a,b,c) from table
如SQL:select distinct a,b,c from table
之前生成后的countSql为: select count(distinct a) from table 正确应该为:select count(distinct a,b,c) from table