반응형
목차
- [DB]MariaDB/Mysql date_format 날짜 시간 형식 표현
- MariaDB 날짜 형식표 및 예시
[DB]MariaDB/Mysql date_format 날짜 시간 형식 표현
쿼리에서 형식에서 대소문자 유의하셔야 됩니다.
아래에 쿼리로 진행했을경우 YYYY-MM-DD HH:MM:SS 이런식에 결과를 보이게 됩니다.
SELECT date_format(NOW(), '%Y-%m-%d %T' ) as date
▼ 결과
하지만 만약에 '%Y-%M-%D %T' 이런식으로 진행된다면 어떤 결과가 나올까요?
실제 저도 처음에는 대수롭지 않게 이렇게 보고 쳤습니다.
SELECT date_format(NOW(), '%Y-%M-%D %T' ) as date
▼ 결과
위하고는 전혀 다른 결과를 얻게 됩니다.
MariaDB 날짜 형식표 및 예시
포맷(Format) | 설명 |
%M | 월(Janeary, December, ...) |
%W | 요일(Sunday, Monday, ...) |
%D | 월(1st, 2dn, 3rd, ...) |
%Y | 연도(1987, 2000, 2013) |
%y | 연도(87, 00, 13) |
%X | 연도(1987, 2000) %V와 같이 쓰임 |
%x | 연도(1987, 2000) %v와 같이 쓰임 |
%a | 요일(Sun, Tue, ...) |
%d | 일(00, 01, 02, ...) |
%e | 일(0, 1, 2, ...) |
%c | 월(1, 2, ..., 12) |
%b | 월(Jan, Feb, Mar ...) |
%j | 몇번째 일(120, 365) |
%H | 시(00, 01, 02, 13, 24) |
%h | 시(01, 02, 12) |
%I(대문자 영문아이) | 시(01, 02, 12) |
%l(소문자 영문엘) | 시(1, 2, 12) |
%i | 분(00, 01, 30) |
%r | hh:mm:ss AM|PM (시분초 오전|오후) |
%T | hh:mm:ss (시분초) |
%S | 초 |
%s | 초 |
%p | AM, PM |
%w | 요일(0,1,2) 0:일요일 |
%U | 주(시작:일요일) |
%u | 주(시작:월요일) |
%V | 주(시작:일요일) |
%v | 주(시작:월요일) |
예시)
SELECT NOW();
▼ 결과 ( 2021-03-22 23:32:44 )
SELECT now(), date_format(NOW(), '%M' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%W' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%D' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%Y' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%y' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%X' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%x' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%a' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%d' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%e' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%c' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%b' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%j' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%H' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%h' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%I' ) as date
▼ 대문자 아이(i) 입력 결과
SELECT now(), date_format(NOW(), '%l' ) as date
▼ 소문자 엘(l) 입력 결과
SELECT now(), date_format(NOW(), '%i' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%r' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%T' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%S' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%s' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%p' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%w' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%U' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%u' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%V' ) as date
▼ 결과
SELECT now(), date_format(NOW(), '%v' ) as date
▼ 결과
반응형
'프로그래밍 > DB' 카테고리의 다른 글
[DB] MSSQL SQL Server Management Studio(SSMS) 단축키 모음 (0) | 2021.04.15 |
---|---|
[DB] MSSQL 테이블 데이터를 INSERT문으로 만드는 방법 (0) | 2021.04.06 |
[MSSQL]DATEDIFF, DATEADD 날짜 비교 (0) | 2021.03.15 |
SQL Server(SSMS) 결과 값 복사 저장 시 컬럼 명도 같이 복사하는 방법 (0) | 2021.03.03 |
[DB]ERD 란? (0) | 2021.02.25 |
댓글