[SpringBoot JPA] BETWEEN
- Coding/JPA
- 2021. 10. 26.
반응형
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<=?)
반응형
'Coding > JPA' 카테고리의 다른 글
[SpringBoot JPA] Like 데이터 조회 (2) | 2021.10.26 |
---|---|
[SpringBoot JPA] NOT NULL 데이터 조회 (0) | 2021.10.26 |
[SpringBoot JPA] 쿼리메소드 DateTime After/Before (0) | 2021.10.26 |
[SpringBoot JPA] 쿼리메소드 WHERE AND/OR 절 (0) | 2021.10.26 |
[SpringBoot JPA] 쿼리메소드 SELECT 정리 (0) | 2021.10.26 |