码迷,mamicode.com
首页 > 数据库 > 详细

mysql查询当前系统时间

时间:2017-06-16 16:33:22      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:ase   blank   sel   details   net   replace   mysq   系统   mysql查询   

第一种方法:select current_date;

MySQL> select current_date as Systemtime;
+------------+
| Systemtime |
+------------+
| 2009-07-29 |
+------------+

 

第二种方法:select now()

mysql> select now() as Systemtime;
+---------------------+
| Systemtime          |
+---------------------+
| 2009-07-29 19:06:07 |
+---------------------+

 

第三种方法:select sysdate()

mysql> select sysdate() as Systemtime;
+---------------------+
| Systemtime          |
+---------------------+
| 2009-07-29 19:06:45 |
+---------------------+

 

转自:http://blog.csdn.net/aini3456/article/details/6471081

mysql查询当前系统时间

标签:ase   blank   sel   details   net   replace   mysq   系统   mysql查询   

原文地址:http://www.cnblogs.com/azhqiang/p/7027821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!