我想创建一个查询,其中包含和,或条件的组合在SQL中,它看起来像select * from users where id = 5 and(name like 'Joe' or last_name like 'Rose')我如何在JPA Repository中做到这一点,我不喜欢使用@Query,这可能吗?
bq3bfh9z1#
这应该是可行的:
List<User> findByNameContainingOrLastNameContainingAndId(String name, String lastName, Long id);
1条答案
按热度按时间bq3bfh9z1#
这应该是可行的: