JPA存储库-和或条件的组合

6qqygrtg  于 2023-10-20  发布在  Spring
关注(0)|答案(1)|浏览(124)

我想创建一个查询,其中包含和,或条件的组合
在SQL中,它看起来像select * from users where id = 5 and(name like 'Joe' or last_name like 'Rose')我如何在JPA Repository中做到这一点,我不喜欢使用@Query,这可能吗?

bq3bfh9z

bq3bfh9z1#

这应该是可行的:

List<User> findByNameContainingOrLastNameContainingAndId(String name, String lastName, Long id);

相关问题