본문 바로가기
Mssql

[MSSQL] CONVERT, 날짜변환, 시간변환, getdate()

by Real Iron 2019. 2. 25.

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-06-16                   DD-MM-YY
 6 CONVERT(CHAR(8), getdate(), 6)20 06 16                   DD MM YY
 7 CONVERT(CHAR(9), getdate(), 7)06 20, 16                  MM DD, YY
 8 CONVERT(CHAR(8), getdate(), 8)13:54:16                   HH:MM:SS
 9 CONVERT(CHAR(26), getdate(), 9)06 20 2016  1:54:16:107PM  NN DD YYYY H:MM:SS.MS
 10 CONVERT(CHAR(8), getdate(), 10)06-20-16                   MM-DD-YY
 11 CONVERT(CHAR(8), getdate(), 11)16/06/20                   DD/MM/YY
 12 CONVERT(CHAR(6), getdate(), 12)160620                     YYMMDD
 13 CONVERT(CHAR(24), getdate(), 13)20 06 2016 13:54:16:107    DD MM YYYY HH:MM:SS.MS
 14 CONVERT(CHAR(12), getdate(), 14)13:54:16:107               HH:MM:SS.MS
 20 CONVERT(CHAR(19), getdate(), 20)2016-06-20 13:54:16        YYYY-MM-DD HH:MM:SS
 21 CONVERT(CHAR(23), getdate(), 21)2016-06-20 13:54:16.107    YYYY-MM-DD HH:MM:SS.MS
 22 CONVERT(CHAR(20), getdate(), 22)06/20/16  1:54:16 PM       MM/DD/YY H:M:S
 23 CONVERT(CHAR(10), getdate(), 23)2016-06-20                 YYYY-MM-DD
 24 CONVERT(CHAR(8), getdate(), 24)13:54:16                   HH:MM:SS
 25 CONVERT(CHAR(23), getdate(), 25)2016-06-20 13:54:16.107    YYYY-MM-DD HH:MM:SS.MS
 100 CONVERT(CHAR(19), getdate(), 100)06 20 2016  1:54PM         MM DD YYYY H:MM
 101 CONVERT(CHAR(10), getdate(), 101)06/20/2016                 MM/DD/YYYY
 102 CONVERT(CHAR(10), getdate(), 102)2016.06.20                 YYYY.MM.DD
 103 CONVERT(CHAR(10), getdate(), 103)20/06/2016                 DD/MM/YYYY
 104 CONVERT(CHAR(10), getdate(), 104)20.06.2016                 DD/MM/YYYY
 105 CONVERT(CHAR(10), getdate(), 105)20-06-2016                 DD-MM-YYYY
 106 CONVERT(CHAR(11), getdate(), 106)20 06 2016                 DD MM YYYY
 107 CONVERT(CHAR(12), getdate(), 107)06 20, 2016                MM DD, YYYY
 108 CONVERT(CHAR(8), getdate(), 108)13:54:16                   HH:MM:SS
 109 CONVERT(CHAR(26), getdate(), 109)06 20 2016  1:54:16:107PM  MM DD YYYY H:MM:DD.MS
 110 CONVERT(CHAR(10), getdate(), 110)06-20-2016                 MM-DD-YYYY
 111 CONVERT(CHAR(10), getdate(), 111)2016/06/20                 YYYY/MM/DD
 112 CONVERT(CHAR(8), getdate(), 112)20160620                   YYYYMMDD
 113 CONVERT(CHAR(24), getdate(), 113)20 06 2016 13:54:16:107    DD MM YYYY HH:MM:DD.MS
 114 CONVERT(CHAR(12), getdate(), 114)13:54:16:107               HH:MM:DD:MS
 120 CONVERT(CHAR(19), getdate(), 120)2016-06-20 13:54:16        YYYY-MM-DD HH:MM:SS
 121 CONVERT(CHAR(23), getdate(), 121)2016-06-20 13:54:16.107    YYYY-MM-DD HH:MM:SS.MS
 126 CONVERT(CHAR(23), getdate(), 126)2016-06-20T13:54:16.107    YYYY-MM-DDT HH:MM:SS.MS
 127 CONVERT(CHAR(23), getdate(), 127)2016-06-20T13:54:16.107    YYYY-MM-DDT HH:MM:SS.MS
 131 CONVERT(CHAR(25), getdate(), 131)15/09/1437 1:54:16:107PM  



출처: https://rohsstory.tistory.com/10 [디버깅하는 남자]