How to search max/min/avg record for each group using QueryDsl -


i using querydsl 4.1.3 version.

is possible search max/min/avg record each group using it?

for example,

select student.* (select class.id sub_class_id, max(student.score) sub_score student inner join class on student.class_id = class.id) student.class_id = sub_class_id , student.score = sub_score;


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -