Home > Database > Mysql Tutorial > 深入mysql YEAR() MONTH() DAYOFMONTH()日期函数的详解_MySQL

深入mysql YEAR() MONTH() DAYOFMONTH()日期函数的详解_MySQL

WBOY
Release: 2016-06-01 13:25:01
Original
1838 people have browsed it

bitsCN.com

mysql的日期函数. 例子中当前日期:
curdate() 是2013年6月24日。
YEAR() :显示年
mysql> select year(curdate()); +-----------------+ | year(curdate()) | +-----------------+ | 2013 | +-----------------+ 1 row in set (0.01 sec)
MONTH() :显示月
mysql> select month(curdate()); +------------------+ | month(curdate()) | +------------------+ | 6 | +------------------+ 1 row in set (0.00 sec)
DAYOFMONTH():显示日期
mysql> select dayofmonth(curdate()); +-----------------------+ | dayofmonth(curdate()) | +-----------------------+ | 24 | +-----------------------+ 1 row in set (0.08 sec)

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template