transaction_timestamp()
是一个系统函数,返回一个时间戳,表示当前事务开始的时间点。
transaction_timestamp()
在 PostgreSQL 8.2 中添加。
用法
transaction_timestamp ( ) → timestamp with time zone
历史上,函数 current_timestamp
返回当前事务的开始时间;transaction_timestamp()
作为更明确的别名添加。
更改历史记录
- PostgreSQL 8.2
- 添加(提交 e6004f01)
示例
transaction_timestamp()
的基本执行示例
postgres=# BEGIN; BEGIN postgres=*# SELECT transaction_timestamp(), statement_timestamp(); transaction_timestamp | statement_timestamp -------------------------------+------------------------------- 2021-06-17 18:22:12.555089+01 | 2021-06-17 18:23:17.327421+01 (1 row)
如果在显式事务之外执行语句,则 transcation_timestamp()
返回的时间戳与 statement_timestamp()
返回的时间戳相同。
postgres=# SELECT transaction_timestamp(), statement_timestamp(); transaction_timestamp | statement_timestamp ------------------------------+------------------------------ 2021-06-17 18:24:27.91313+01 | 2021-06-17 18:24:27.91313+01 (1 row)