테이블을 만들때 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;
'MySQL' 카테고리의 다른 글
MySQL의 date_format, 시간차이 datediff, 날짜 더하기date_add 사용하기 (0) | 2021.12.09 |
---|---|
MySQL의 현재 Datetime 정보 가져오는 함수 curdate(), curtime(),now() (0) | 2021.12.09 |
MySQL의 모든 데이터 값을 더하는 sum()함수와 평균을 구하는 avg()함수 (0) | 2021.12.09 |
MySQL의 sub query 작성하기 where절 안에 또 다른 SQL (0) | 2021.12.08 |
MySQL 의 최대값 max() 최소값 min() (0) | 2021.12.08 |