zoukankan      html  css  js  c++  java
  • timestamp ---自动更新修改时间 与 记录首次插入时间

    自动更新修改时间:

    mysql> create table z(a int ,b timestamp on update current_timestamp); 
    
    mysql> insert into z select 1,current_timestamp;
    mysql> select * from z;
    +------+---------------------+
    | a    | b                   |
    +------+---------------------+
    |    1 | 2016-06-26 07:18:45 |
    +------+---------------------+
    1 row in set (0.00 sec)
    mysql> insert into z select 2,current_timestamp; 
    Query OK, 1 row affected (0.18 sec)
    Records: 1  Duplicates: 0  Warnings: 0
    
    mysql> select * from z;
    +------+---------------------+
    | a    | b                   |
    +------+---------------------+
    |    1 | 2016-06-26 07:18:45 |
    |    2 | 2016-06-26 07:19:05 |
    +------+---------------------+
    2 rows in set (0.00 sec)
    mysql> update z set a=a+100 where a=1;
    Query OK, 1 row affected (0.20 sec)
    Rows matched: 1  Changed: 1  Warnings: 0
    
    mysql> select * from z;
    +------+---------------------+
    | a    | b                   |
    +------+---------------------+
    |  101 | 2016-06-26 07:19:48 |
    |    2 | 2016-06-26 07:19:05 |
    +------+---------------------+
    2 rows in set (0.00 sec)

     记录首次插入时间:

    mysql> create table x (a int, b timestamp default current_timestamp); 
    Query OK, 0 rows affected (0.22 sec)
    
    mysql> select * from x;
    Empty set (0.00 sec)
    
    mysql> insert into x(a) values(1); 
    Query OK, 1 row affected (0.18 sec)
    
    mysql> select * from x;
    +------+---------------------+
    | a    | b                   |
    +------+---------------------+
    |    1 | 2016-06-26 07:14:04 |
    +------+---------------------+
    1 row in set (0.00 sec)
    
    mysql> insert into x(a) values(2);
    Query OK, 1 row affected (0.19 sec)
    
    mysql> select * from x;
    +------+---------------------+
    | a    | b                   |
    +------+---------------------+
    |    1 | 2016-06-26 07:14:04 |
    |    2 | 2016-06-26 07:14:35 |
    +------+---------------------+
    2 rows in set (0.00 sec)
  • 相关阅读:
    Mysql权限控制
    Linux查看端口
    linus 下redis守护进程启动
    pymongo创建索引
    mongo批量操作存在更新否则插入
    梯度下降推导过程资料整理
    [转]mitmproxy套件使用攻略及定制化开发
    终极利器!利用appium和mitmproxy登录获取cookies
    how-to-pass-a-class-variable-to-a-decorator-inside-class-definition
    python进阶之魔法函数
  • 原文地址:https://www.cnblogs.com/zengkefu/p/5618970.html
Copyright © 2011-2022 走看看