I am trying to use JPA and JPQL to query my entity and return the sum of a column (total days) from the table. I thought I had set it up right but I am getting this error:<
change your JPQL to @Query("SELECT SUM(m.totalDays) FROM MyEntity m")
@Query("SELECT SUM(m.totalDays) FROM MyEntity m")