T-sql 귀속 구조 연속 날짜 시퀀스

1918 단어 t-sql
with t(d) as

(select GETDATE() union all select d +1 from t where d<GETDATE()+9)

select * from t



 10 



 



with t(n,m) as

(select 1,getdate() union all select n+1,getdate()+n from t where n<10)

select m from t;



 

 

좋은 웹페이지 즐겨찾기