February 18, 2023
public static LocalDateTime stringToLocalDateTime(String stringDate) {
String strDate = stringDate + " 00:00:00";
return LocalDateTime.parse(strDate, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
}
평소에 Api 작업을 할 때 시작 ~ 끝
조회를 하기 위해서 String 타입의 파라미터를 받는 경우가 많았다.
(..중략..)
String startDate = requestDto.getStartDate(); // "2023-02-01"
String endDate = requestDto.getEndDate(); // "2023-02-20"
(Query 임)
select *
from A
where A.createDate >= startDate
and A.createDate < endDate