localtime

返回当前事务开始时间的函数

localtime 是一个系统函数,返回当前事务开始时的时间,不含时区。

localtimePostgreSQL 7.3 中添加。

用法

localtime → time
localtime ( integer ) → time

可选的 整数 参数决定秒字段中的小数位应舍入到多少位。

对于返回 带时区的时间戳 的等效函数,请参见 current_time

变更历史

示例

localtime 的基本用法示例

postgres=# SELECT localtime;
    localtime    
-----------------
 17:51:15.083027
(1 row)

指定精度

postgres=# SELECT localtime(0);
 localtime 
-----------
 17:56:36
(1 row)

postgres=# SELECT localtime(3);
  localtime   
--------------
 17:56:37.896
(1 row)

大于 6 的精度将向下舍入

postgres=# SELECT localtime(7);
WARNING:  TIME(7) precision reduced to maximum allowed, 6
    localtime    
-----------------
 17:57:36.350601
(1 row)

分类

日期和时间系统函数

另请参阅

localtimestampcurrent_time

反馈

提交任何关于 "localtime" 的评论、建议或更正 此处