mysql 日期时间函数

current_time() 是一个 MySQL 日期/时间函数。用于获取当前时间。

语法

select current_time(); 

参数

返回

此函数将返回当前时间。

如果在字符串上下文中使用,它将以"HH:MM:SS"格式返回当前时间。

如果在数字上下文中使用,它将以 HHMMSS 格式返回当前时间。

示例 1

select current_time(); 

输出:

mysql> select current_time();
+----------------+
| current_time() |
+----------------+
| 10:29:18       |
+----------------+
1 row in set (0.00 sec)

示例 2

select current_time()+2; 

输出:

mysql> select current_time()+2;
+------------------+
| current_time()+2 |
+------------------+
|           102959 |
+------------------+
1 row in set (0.00 sec)