SQL Server에서 전달의 첫 번째 날과 마지막 날(타임스탬프 포함)을 가져오는 방법 지난달 첫 날과 마지막 날을 타임스탬프와 함께 제공하는 솔루션을 찾을 수 없었습니다. 여기 해결책이 있습니다. SELECT DATEADD(month, DATEDIFF(month, -1, getdate()) - 2, 0) as FirtDayPreviousMonthWithTimeStamp, DATEADD(ss, -1, DATEADD(month, DATEDIFF(month, 0, getdate()), 0)) as LastDayPreviousMonthWithTimeStamp 그러면 다음과 같은 결과가 반환됩니다.currentdate = '2012-7-31' 결과:2012-06-01 00:00:00.000 2012-06-30..