首页  >  文章  >  数据库  >  mysql时间问题_MySQL

mysql时间问题_MySQL

WBOY
WBOY原创
2016-06-01 13:08:27911浏览

1. mysql中提供的日期和时间:

mysql> desc test_time;+--------+---------------------+------+-----+-------------------+-----------------------------+| Field  | Type                | Null | Key | Default           | Extra                       |+--------+---------------------+------+-----+-------------------+-----------------------------+| id     | bigint(20) unsigned | NO   | PRI | NULL              | auto_increment              || t_date | date                | YES  |     | NULL              |                             || t_time | time                | YES  |     | NULL              |                             || t_ts   | timestamp           | NO   |     | CURRENT_TIMESTAMP | on update CURRENT_TIMESTAMP || t_dt   | datetime            | YES  |     | NULL              |                             |+--------+---------------------+------+-----+-------------------+-----------------------------+5 rows in set (0.00 sec)mysql> insert into test_time(t_date,t_time,t_dt) values(curdate(),curtime(), now());Query OK, 1 row affected (0.00 sec)mysql> select * from test_time;+----+------------+----------+---------------------+---------------------+| id | t_date     | t_time   | t_ts                | t_dt                |+----+------------+----------+---------------------+---------------------+|  1 | 2014-06-19 | 15:53:39 | 2014-06-19 15:53:39 | 2014-06-19 15:53:39 ||  2 | 2014-06-19 | 15:53:57 | 2014-06-19 15:53:57 | 2014-06-19 15:53:57 ||  3 | 2014-06-19 | 15:54:01 | 2014-06-19 15:54:01 | 2014-06-19 15:54:01 ||  4 | 2014-06-19 | 15:54:38 | 2014-06-19 15:54:38 | 2014-06-19 15:54:38 |+----+------------+----------+---------------------+---------------------+4 rows in set (0.00 sec)


2. 当修改表中数据时,t_ts自动更新为当前时间:

mysql> update test_time set age=4 where id=4;Query OK, 1 row affected (0.00 sec)Rows matched: 1  Changed: 1  Warnings: 0mysql> mysql> select * from test_time;+----+------------+----------+---------------------+---------------------+-----+| id | t_date     | t_time   | t_ts                | t_dt                | age |+----+------------+----------+---------------------+---------------------+-----+|  1 | 2014-06-19 | 15:53:39 | 2014-06-19 15:59:32 | 2014-06-19 15:53:39 |   1 ||  2 | 2014-06-19 | 15:53:57 | 2014-06-19 15:59:41 | 2014-06-19 15:53:57 |   2 ||  3 | 2014-06-19 | 15:54:01 | 2014-06-19 15:59:49 | 2014-06-19 15:54:01 |   3 ||  4 | 2014-06-19 | 15:54:38 | 2014-06-19 15:59:55 | 2014-06-19 15:54:38 |   4 |+----+------------+----------+---------------------+---------------------+-----+

3. 时间比较:

mysql> SELECT * FROM test_time WHERE TO_DAYS(NOW()) - TO_DAYS(t_date) <br><pre class="brush:php;toolbar:false">select * from test_time where unix_timestamp(t_ts) >= unix_timestamp() -1800 and unix_timestamp(t_ts) <br><br><p>4. mysql设计friendfeed</p><p>  http://backchannel.org/blog/friendfeed-schemaless-mysql</p><p></p><p><br></p><br><p></p>
    
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn