DateTime(4)
-
MSSQL DATETIME TO EXCEL SERIAL [MSSQL 날짜형식을 엑셀 시리얼 형식으로 변환]
왜 엑셀 시리얼 형태를 사용하는지는 잘 모르겠다. 그냥 고객이 해달라고 하니까 해주는거다. Declare @Date datetime = getdate() Select DateDiff(DD,'1899-12-30',@Date)+(DateDiff(SS,cast(@Date as Date),@Date)/86400.0) excel_serial -- 필요한 경우 소수점을 반올림하면 된다. Select convert(int, DateDiff(DD,'1899-12-30',@Date)+(DateDiff(SS,cast(@Date as Date),@Date)/86400.0)) excel_serial_int Select convert(int, round(DateDiff(DD,'1899-12-30',@Date)+(DateDiff..
2020.07.09 -
DATETIME TO JULIAN [데이트 타임 형식의 날짜를 줄리안 형식으로 변환]
-- ================================================ -- Template generated from Template Explorer using: -- Create Scalar Function (New Menu).SQL -- -- Use the Specify Values for Template Parameters -- command (Ctrl-Shift-M) to fill in the parameter -- values below. -- -- This block of comments will not be included in -- the definition of the function. -- =========================================..
2020.06.02 -
JULIAN TO DATETIME [줄리안 형식 날짜를 데이트 타임 형식으로 변환]
-- ================================================ -- Template generated from Template Explorer using: -- Create Scalar Function (New Menu).SQL -- -- Use the Specify Values for Template Parameters -- command (Ctrl-Shift-M) to fill in the parameter -- values below. -- -- This block of comments will not be included in -- the definition of the function. -- =========================================..
2020.06.02 -
[MSSQL] CONVERT, 날짜변환, 시간변환, getdate()
ex) select CONVERT(CHAR(23), getdate(), 121) value) 2016-06-20 13:56:35.890 번호 쿼리 결과 코드 0 CONVERT(CHAR(19), getdate(), 0) 06 20 2016 1:54PM MM DD YYYY H:MM 1 CONVERT(CHAR(10), getdate(), 1) 06/20/16 MM/DD/YYYY 2 CONVERT(CHAR(8), getdate(), 2) 16.06.20 YY.MM.DD 3 CONVERT(CHAR(8), getdate(), 3) 20/06/16 DD/MM/YY 4 CONVERT(CHAR(8), getdate(), 4) 20.06.16 DD.MM.YY 5 CONVERT(CHAR(8), getdate(), 5) 20..
2016.07.04