我正在尝试运行这个简单的查询,但没有成功。 有人可以帮我这个吗?
谢谢
@Query(nativeQuery = true, value = "select kategorie, sum(amount) amount from Transaction where date between ?1 and ?2 group by kategorie")
List<Transaction> countCashPaymentInMonth(Date from, Date to);
在mysql中查询工作正常。
我正在接收
ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Column "id" was not find
我正在使用
spring-boot-starter-data-jpa
1.3.3.RELEASE
答案 0 :(得分:2)
应该是
List<Object[]> countCashPaymentInMonth(Date from, Date to);