本文介绍下,在mysql中取得当前时间的函数,分别使用current_timestamp()、current_date()、current_time(),举几个小例子,供大家参考。
以下举三个例子,帮助大家学习mysql中获取当前日期与时间的方法,大家要细细体会mysql时间戳函数的具体用法。
一,使用current_timestamp()获取当前日期与时间
复制代码 代码示例:
mysql> select current_timestamp();
+---------------------+
| current_timestamp() |
+---------------------+
| 2010-01-18 21:24:37 |
+---------------------+
1 row in set (0.00 sec)
二,使用current_date()获取当前日期
复制代码 代码示例:
mysql> select current_date();
+----------------+
| current_date() |
+----------------+
| 2010-01-18 |
+----------------+
1 row in set (0.00 sec)
三,使用 current_time()获得当前时间
复制代码 代码示例:
mysql> select current_time();
+----------------+
| current_time() |
+----------------+
| 21:24:46 |
+----------------+
1 row in set (0.00 sec)