Coding/JPA
[SpringBoot JPA] BETWEEN
shbada
2021. 10. 26. 22:04
728x90
반응형
Between (LocalDate Type, Long Type 모두 가능)
- LocalDateTime 타입 변수
List<User> findByCreatedAtBetween(LocalDateTime startDateTime, LocalDateTime endDateTime);
- long 타입 변수
List<User> findByIdBetween(long startId, long endId);
Between~And
List<User> findByIdGreaterThanEqualAndIdLessThanEqual(Long id1, Long id2);
실행쿼리
findByIdBetween 메서드와 동일하게 구현된다.
between (id>=? AND id<=?)
반응형