我想在我的Repository接口中添加一个跟踪SQL查询的方法
SELECT * FROM my_db.location where last_date is null ORDER BY act_date DESC
我在mysql workbench中运行此查询,它按预期工作。我为JPA
创建了以下方法名称findAllLastDateIsNullByOrderByActDateDesc() {}
但是它只执行降序排序但不是最后一次日期是Null。请帮我找出正确的方法。
答案 0 :(得分:1)
尝试以下
findAllByLastDateIsNullOrderByActDateDesc();