mysql 日期时间函数

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

语法

select current_timestamp(); 

参数

返回

current_timestamp 函数返回当前日期和时间。

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

如果在数字上下文中使用,它将以 YYYYMMDDHHMMSS 格式返回当前日期。

示例 1

Select current_timestamp(); 

输出:

mysql> Select current_timestamp();
+---------------------+
| current_timestamp() |
+---------------------+
| 2023-03-31 10:58:45 |
+---------------------+
1 row in set (0.00 sec)

示例 2

Select current_timestamp()+2; 

输出:

mysql> Select current_timestamp()+2;
+-----------------------+
| current_timestamp()+2 |
+-----------------------+
|        20230331105857 |
+-----------------------+
1 row in set (0.00 sec)