本文介绍了JPA计数不同的多个表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
CriteriaBuilder.countDistinct(Expression e)
CriteriaBuilder.countDistinct(Expression e)
它只有一个表达式。如何计算不同的多个表达式?例如,
It takes one expression only. How to count distinct multiple expressions? For example,
Country Language
-------------------------------
在JPA CriteriaQuery中,如何计数
In JPA CriteriaQuery, how to count different pairs of (country, language)?
谢谢,
推荐答案
>你不能这样做用JPQL。 JPQL BNF非常清楚
You cannot do that with JPQL. JPQL BNF is very clear
aggregate_expression ::= { AVG | MAX | MIN | SUM } ([DISTINCT] state_field_path_expression) |
COUNT ([DISTINCT] identification_variable | state_field_path_expression |
single_valued_object_path_expression)
这篇关于JPA计数不同的多个表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!