
# current_timestamp
CURRENT_TIMESTAMP函数用于返回当前时间戳。
#### 命令格式
```
current_timestamp()
```
#### 参数说明
无
#### 返回值说明
返回TIMESTAMP类型的时间戳。
#### 示例代码
返回1692002816300。
```
select current_timestamp();
```
