我想MyTable
只插入最后一个结果。所以我放了LIMIT 1
orLIMIT 0,1
但我有两个结果。它抛出一个异常。我能怎么做?我org.springframework.data.repository.CrudRepository
在 mysql 数据库上使用
@Query("select t from MyTable t " +
" where " +
" t.date <= :date " +
" order by t.date desc " +
" LIMIT 1 ")
MyTable findOnlyTheLast(
@Param("date") String date);