Order By Date ASC with Spring Data

前端 未结 4 1389
无人及你
无人及你 2021-02-06 21:10

I try to make an application with Spring-Data-JPA on a table in order by ASC but it gives me an error:

Invalid derived query! No property asc found for type java         


        
4条回答
  •  生来不讨喜
    2021-02-06 21:38

    date is reserved word in SQL. Try changing the table property to foo_date, for example and rewrite your query as SELECT * FROM foo ORDER BY foo_date DESC

提交回复
热议问题