DJ메탈짱™의 Free Style

[MS-SQL] datediff 날짜 및 시간차 가져오기 함수 본문

일(job)/DBMS

[MS-SQL] datediff 날짜 및 시간차 가져오기 함수

뽀&쏭 2016. 1. 15. 17:12



DATEDIFF 날짜 및 시간차 가져오기 함수

 

declare @now datetime

set @now = '2012-02-03 11:45:29.097';

with list_cte(대상날짜)

as

(

       select '2012-02-03 11:30:29.097' as dt

       union

       select '2012-02-03 11:32:29.097'

       union

       select '2012-02-03 11:35:29.097'

       union

       select '2012-02-03 11:36:29.097'

       union

       select '2012-02-03 11:39:29.097'

       union

       select '2012-02-03 11:39:29.097'

       union 

       select '2012-02-03 11:40:29.097'

)

select * from list_cte

where DATEDIFF(mi,[대상날짜],@now) <= 10 -- 10분이하 데이터 가져오기