zoukankan      html  css  js  c++  java
  • PostgreSQL事务中的时间

    在同一个事务中,时间是不变的:

    postgres=# begin;
    BEGIN
    postgres=# select now(),current_time,current_timestamp,localtime,localtimestamp,transaction_timestamp();
                  now              |    current_time    |       current_timestamp       |    localtime    |       localtimestamp       |     transaction_timestamp     
    -------------------------------+--------------------+-------------------------------+-----------------+----------------------------+-------------------------------
     2021-01-22 16:50:46.917081+08 | 16:50:46.917081+08 | 2021-01-22 16:50:46.917081+08 | 16:50:46.917081 | 2021-01-22 16:50:46.917081 | 2021-01-22 16:50:46.917081+08
    (1 row)
    
    postgres=# select pg_sleep_for('10 seconds');
     pg_sleep_for 
    --------------
     
    (1 row)
    
    postgres=# select now(),current_time,current_timestamp,localtime,localtimestamp,transaction_timestamp();
                  now              |    current_time    |       current_timestamp       |    localtime    |       localtimestamp       |     transaction_timestamp     
    -------------------------------+--------------------+-------------------------------+-----------------+----------------------------+-------------------------------
     2021-01-22 16:50:46.917081+08 | 16:50:46.917081+08 | 2021-01-22 16:50:46.917081+08 | 16:50:46.917081 | 2021-01-22 16:50:46.917081 | 2021-01-22 16:50:46.917081+08
    (1 row)
    
    postgres=# 
    

    要想获得在事务中某个语句执行的时间,可以使用clock_timestamp()

    postgres=# begin;
    BEGIN
    postgres=# select statement_timestamp(),clock_timestamp();
          statement_timestamp      |        clock_timestamp        
    -------------------------------+-------------------------------
     2021-01-22 16:54:13.433445+08 | 2021-01-22 16:54:13.433605+08
    (1 row)
    
    postgres=# select pg_sleep_for('10 seconds');
     pg_sleep_for 
    --------------
     
    (1 row)
    
    postgres=# select statement_timestamp(),clock_timestamp();
         statement_timestamp      |        clock_timestamp        
    ------------------------------+-------------------------------
     2021-01-22 16:54:29.92086+08 | 2021-01-22 16:54:29.921041+08
    (1 row)
    
    postgres=# 
    

      

  • 相关阅读:
    实战:上亿数据如何秒查(转)
    jquery json 操作(转)
    企业模式之Unit Of Work模式
    判断一个网站用什么服务器
    js面向对象的封装方法,【案例】
    直线拟合算法
    互联网公司年终奖哪家强?都是土豪啊
    wifidog用php实现验证流程
    想学android进来看看吧~ ~
    Android自己定义视图(一):带下划线的TextView
  • 原文地址:https://www.cnblogs.com/abclife/p/14314271.html
Copyright © 2011-2022 走看看