table : checktable
column : std_day std_time
일자와 시간이 분리된 위 테이블에서
다음과 같은행태의 조건을 만족하는 데이터를 뽑고싶습니다.
2014-01-01 07:00:00 ~ 2014-01-02 07:00:00
감사합니다
where std_day between '2014-01-01' and '2014-01-02'
and (( std_day = '2014-01-01' and std_time >= '07:00:00')
or (std_day = '2014-02-02' and std_time <= '07:00:00'))
이런식 처리가 std_day에 index가 걸려 있다는 가정에서 적절한 처리로 보입니다.