MySQL

MySQL의 날짜와 시간 처리 datetime테이블 설정 및 원하는 연,월,일,요일 출력

HooSL 2021. 12. 9. 17:41

테이블을 만들때 Datatype을 설정해줍니다.

DATE는 날짜만 출력하고 TIME은 시간만 출력, DATETIME은 두개 전부 출력합니다.

insert into people2
(name,birthdate,birthtime,birthdt)
values
('Padma','1983-11-11','10:07:35','1983-11-11 10:07:35'),
('Larry','1990-12-25','04:10:42','1990-12-25 04:10:42');

 

위 데이터에서 날짜만 출력

select name,day(birthdate)
from people2;

 

위 날짜 데이터의 요일을 출력

select name,dayname(birthdate) -- 해당 날짜의 요일 출력
from people2;

select name,dayofweek(birthdate) -- 해당 날짜의 요일을 숫자로 출력
from people2;

숫자는 일요일이 1입니다.

월 = 2 , 화 = 3 ....

 

해당 날짜가 1년중 몇일이 지났는지 확인

select name,dayofyear(birthdate)
from people2;

 

해당 날짜의 연,월,일 출력

select name, month(birthdate) -- 해당 월
from people2;

select name, day(birthdate) -- 해당 일
from people2;

select name, year(birthdate) -- 해당 년
from people2;

 

해당 날짜와 시간중 시,분,초 출력

select name, hour(birthtime) -- 해당 시간
from people2;

select name, minute(birthtime) -- 해당 분
from people2;

select name, second(birthtime) -- 해당 초
from people2;