mysql查询当前系统时间
Posted ㄓㄤㄑㄧㄤ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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查询当前系统时间的主要内容,如果未能解决你的问题,请参考以下文章