[MS-SQL] 날짜포맷 변환표
목차
- MSSQL 날짜포맷 변환표
MS-SQL날짜포맷 변환표
MS-SQL에서는 날짜형태에 따라서 변환할 수 있는, 변환 함수를 제공해주고 있습니다.
사용방법 예를들어 자주사용하는 120번의 경우 GETDATE(현재날짜) 기준으로 쿼리를 작성해 보았습니다.
SELECT CONVERT(CHAR(19), GETDATE(), 120);
결과값
2020-09-20 13:14:03
이런식으로 YYYY-MM-DD HH:MM:SS 형식으로 나오게 됩니다.
날짜변환표를 보고 각각의 쓰임에 맞게 사용 하시면 됩니다.
번호 |
쿼리 |
결과 |
0 |
CONVERT(CHAR(19), getdate(), 0) |
03 26 2018 1:14PM |
1 |
CONVERT(CHAR(10), getdate(), 1) |
03/26/18 |
2 |
CONVERT(CHAR(8), getdate(), 2) |
18.03.26 |
3 |
CONVERT(CHAR(8), getdate(), 3) |
26/03/18 |
4 |
CONVERT(CHAR(8), getdate(), 4) |
26.03.18 |
5 |
CONVERT(CHAR(8), getdate(), 5) |
26-03-18 |
6 |
CONVERT(CHAR(8), getdate(), 6) |
26 03 18 |
7 |
CONVERT(CHAR(9), getdate(), 7) |
03 26, 18 |
8 |
CONVERT(CHAR(8), getdate(), 8) |
13:14:03 |
9 |
CONVERT(CHAR(26), getdate(), 9) |
03 26 2018 1:14:03:693PM |
10 |
CONVERT(CHAR(8), getdate(), 10) |
03-26-18 |
11 |
CONVERT(CHAR(8), getdate(), 11) |
18/03/26 |
12 |
CONVERT(CHAR(6), getdate(), 12) |
180326 |
13 |
CONVERT(CHAR(24), getdate(), 13) |
26 03 2018 13:14:03:693 |
14 |
CONVERT(CHAR(12), getdate(), 14) |
13:14:03:710 |
20 |
CONVERT(CHAR(19), getdate(), 20) |
2018-03-26 13:14:03 |
21 |
CONVERT(CHAR(23), getdate(), 21) |
2018-03-26 13:14:03.710 |
22 |
CONVERT(CHAR(20), getdate(), 22) |
03/26/18 1:14:03 PM |
23 |
CONVERT(CHAR(10), getdate(), 23) |
2018-03-26 |
24 |
CONVERT(CHAR(8), getdate(), 24) |
13:14:03 |
25 |
CONVERT(CHAR(23), getdate(), 25) |
2018-03-26 13:14:03.710 |
100 |
CONVERT(CHAR(19), getdate(), 100) |
03 26 2018 1:14PM |
101 |
CONVERT(CHAR(10), getdate(), 101) |
03/26/2018 |
102 |
CONVERT(CHAR(10), getdate(), 102) |
2018.03.26 |
103 |
CONVERT(CHAR(10), getdate(), 103) |
26/03/2018 |
104 |
CONVERT(CHAR(10), getdate(), 104) |
26.03.2018 |
105 |
CONVERT(CHAR(10), getdate(), 105) |
26-03-2018 |
106 |
CONVERT(CHAR(11), getdate(), 106) |
26 03 2018 |
107 |
CONVERT(CHAR(12), getdate(), 107) |
03 26, 2018 |
108 |
CONVERT(CHAR(8), getdate(), 108) |
13:14:03 |
109 |
CONVERT(CHAR(26), getdate(), 109) |
03 26 2018 1:14:03:710PM |
110 |
CONVERT(CHAR(10), getdate(), 110) |
03-26-2018 |
111 |
CONVERT(CHAR(10), getdate(), 111) |
2018/03/26 |
112 |
CONVERT(CHAR(8), getdate(), 112) |
20180326 |
113 |
CONVERT(CHAR(24), getdate(), 113) |
26 03 2018 13:14:03:710 |
114 |
CONVERT(CHAR(12), getdate(), 114) |
13:14:03:710 |
120 |
CONVERT(CHAR(19), getdate(), 120) |
2018-03-26 13:14:03 |
121 |
CONVERT(CHAR(23), getdate(), 121) |
2018-03-26 13:14:03.710 |
126 |
CONVERT(CHAR(23), getdate(), 126) |
2018-03-26T13:14:03.710 |
127 |
CONVERT(CHAR(23), getdate(), 127) |
2018-03-26T13:14:03.710 |
131 |
CONVERT(CHAR(25), getdate(), 131) |
10/07/1439 1:14:03:710PM |
'프로그래밍 > DB' 카테고리의 다른 글
MSSQL 작은 따옴표(') 입력 처리 (0) | 2021.01.29 |
---|---|
Maria DB 설치 방법 (0) | 2021.01.06 |
DBEAVER 설치 방법 (0) | 2021.01.02 |
[DB] DDL, DML, DCL 이란? (0) | 2020.09.11 |
[MS-SQL] 테이블 컬럼 (추가,수정,삭제) (0) | 2020.09.10 |
댓글