使用Spring Data Jpa生成count(distinct col)

时间:2018-09-27 15:51:19

标签: 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_ ...

所以这与我们想要的完全相反。

0 个答案:

没有答案