标签: java spring spring-data-jpa
我们正在使用Spring Data JPA 1.9.2,并试图生成以下查询:
select count(distinct col) from table where col_name = ?
我们已经尝试了以下Spring数据
Long countDistinctColByColName(Long colName);
及其生成以下SQL
select distinct count(table0_.id) as col_0_0_ ...
所以这与我们想要的完全相反。