select curdate();
select curtime();
select now();
시간은 UTC 협정시간으로 출력 되기 때문에 9시간 차이가 난다.
iso형식의 시간을 한글로 표현하기
select date_format(컬럼,'%Y년 %m월 %d일,%h시%m분%s초')
from 테이블;
날짜에서 지금까지 날짜차이구하기
select datediff( now() , 날짜컬럼 )
from 테이블;
날짜 더하기
select birthdt, date_add(날짜컬럼,interval n day)
from 테이블;
현재의 연월일 정보 호출 select curdate(); 현재의 시간을 호출 select curtime(); 현재의 연월일 시분초 호출 select now(); 시간은 UTC 협정시간으로 출력 되기 때문에 9시간 차이가 난다. iso형식의 시간을 한글로 표현하기 select date_format(컬럼,'%Y년 %m월 %d일,%h시%m분%s초') from 테이블; 날짜에서 지금까지 날짜차이 구하기 select datediff( now() , 날짜컬럼 ) from 테이블; 날짜 더하기 select birthdt, date_add(날짜컬럼,interval n day) from 테이블; |
'데이터베이스' 카테고리의 다른 글
MySQL 테이블 합치기 join/left join (0) | 2022.12.08 |
---|---|
MySQL datetype 컬럼, 년/월/일 호출 (0) | 2022.12.07 |
MySQL group by된 데이터 가공 : group by having (0) | 2022.12.07 |
MySQL 집계하기,최대,최소,합계,평균 : group by/max()/min()sum()/avg() /sub query (0) | 2022.12.07 |
MySQL distinct(유니크)/order by(정렬하기)/limit(조회한계설정)/like(문자검색) (0) | 2022.12.07 |