728x90
-- 현재일에 해당하는 주차 -> 2019년 8월 12일은 8월달 몇주차인가?
Select CEILING((DAY('2019-08-12') + DATEPART(DW, '20190801') - 1) / 7.0)
-- 특정 주차의 날짜 -> 2019년 8월 3주차의 시작날짜와 끝날짜는?
Declare @input Varchar(8);
Set @input = '20190803';
Declare @firstday Date;
Set @firstday=CONVERT(Date, Left(@input, 4) + '-' + SUBSTRING(@input, 5, 2) + '-01');
Declare @addweek Int;
Set @addweek = CONVERT(Int, Right(@input, 2)) - 1;
Select DATEADD(DAY, @addweek * 7, firstweekdate) As startweekdate, DATEADD(DAY, @addweek * 7 + 6, firstweekdate) As endweekdate
From (
Select DATEADD(DAY, -(DATEPART(WEEKDAY, @firstday)) + 1, @firstday) As firstweekdate
) t;
728x90
'Server > SQL Server' 카테고리의 다른 글
[MSSQL] Database Offline (0) | 2022.01.12 |
---|---|
[SQL Server] Memory 관리 (0) | 2021.11.23 |
[MS-SQL] http 요청 보내기 (0) | 2020.10.27 |
[SQL Server] .NET 어셈블리 등록 (0) | 2020.06.02 |
[MSSQL] 서버에서 지연되는(처리시간이 오래 걸리는) 쿼리(Query)찾기 (2) | 2020.03.17 |