0

Error is thrown when we are trying to sort on aggregated column COUNT.

For Example : Requirement is to form below query using specification. But, it is not returning single entity as result. Rather, it's join of tables.

Sort on SQL Query required using Specification :

Select DISTINCT ss.studentId.name, ss.studentId.department , COUNT (DISTINCT ss.subjectId.id)" +
            "FROM SubjectStudent  ss " +
            "left outer join ss.studentId sd  " +
            "left outer join ss.subjectId su "+
            "GROUP BY  ss.studentId.cve, ss.subjectId.id " +
            "ORDER BY ss.studentId.department 

So, here how can we sort on aggregate column COUNT using specification?

Vaibhav Sawant
  • 341
  • 1
  • 7
  • 22

1 Answers1

1

Solution : criteriaBuilder.having(<>) whenever we want to put condition on aggregate functions using specification

Vaibhav Sawant
  • 341
  • 1
  • 7
  • 22