MySQL内置时间curdate查询用法
发布时间:2020-12-12 02:18:33 所属栏目:MySql教程 来源:网络整理
导读:总结一下MySQL内置时间查询用法 mysql SELECT year(curdate()); +-----------------+ | year(curdate()) | +-----------------+ | 2009 | +-----------------+ 1 row in set (0.00 sec) mysql SELECT month(curdate()); +------------------+ | month(curdate
总结一下MySQL内置时间查询用法 mysql> SELECT year(curdate()); +-----------------+ | year(curdate()) | +-----------------+ | 2009 | +-----------------+ 1 row in set (0.00 sec) mysql> SELECT month(curdate()); +------------------+ | month(curdate()) | +------------------+ | 8 | +------------------+ 1 row in set (0.00 sec) mysql> SELECT day(curdate()); +----------------+ | day(curdate()) | +----------------+ | 9 | +----------------+ 1 row in set (0.00 sec) mysql> SELECT curdate(); +------------+ | curdate() | +------------+ | 2009-08-09 | +------------+ 1 row in set (0.00 sec) mysql> SELECT dayofmonth(curdate()); +-----------------------+ | dayofmonth(curdate()) | +-----------------------+ | 9 | +-----------------------+ 1 row in set (0.00 sec) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |