问题描述
select count(distinct A,B,C)from table,就是在table表中根据ABC三个字段去掉重复后求count。 hql 应该如何 写。
解决方案
引用select count(*) as record_count from(select distinct A,B,C from t_test ) as temp_table;这个可以的,我测试了。嵌套查询,要把你要查询的记录作为一张临时表来查!楼主可以试试!
时间: 2024-09-13 17:36:01