[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