mysql 中的datetime和timestamp的比较

http://dev.mysql.com/doc/refman/5.1/en/datetime.html 官网

http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html

相同
1 显示
 TIMESTAMP列的显示格式与DATETIME列相同。换句话说,显示宽度固定在19字符,并且格式为YYYY-MM-DD HH:MM:SS。
不同

1范围
     datetime 以'YYYY-MM-DD HH:MM:SS'格式检索和显示DATETIME值。支持的范围为'1000-01-01 00:00:00'到'9999-12-31 23:59:59'
     TIMESTAMP值不能早于1970或晚于2037
2 储存
     2.1 TIMESTAMP  (存储少了一半,到底选择哪个好呢 ??)

    2.1.1  4个字节储存 (Time stamp value is stored in 4 bytes)
    2.1.2  值以UTC格式保存( it stores the number of milliseconds)
    2.1.3  时区转化 ,存储时对当前的时区进行转换,检索时再转换回当前的时区。
    2.2   datetime
    2.2.1    8个字节储存 (8 bytes storage)
    2.2.1   实际格式储存(Just stores what you have stored and retrieves the same thing which you have stored.)
    2.2.1  与时区无关(It has nothing to deal with the TIMEZONE and Conversion.)


实例对比

现在我来做个时区对他们的影响。

先插入一个数据insert into `t8` values(now(), now());
改变客户端时区(东9区,日本时区)。
再次显示插入的数据,变化了,timestamp类型的数据 增加了 1个小时。

CREATE TABLE `emlog`.`my_t8` (
  `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  `timestampTest` TIMESTAMP,
  `dateTimeTest` DATETIME,
  PRIMARY KEY(`id`)
)
ENGINE = InnoDB
COMMENT = 'test';

mysql> desc my_t8
    -> ;
+---------------+------------------+------+-----+-------------------+-----------
-----+
| Field         | Type             | Null | Key | Default           | Extra
     |
+---------------+------------------+------+-----+-------------------+-----------
-----+
| id            | int(10) unsigned | NO   | PRI | NULL              | auto_incre
ment |
| timestampTest | timestamp        | NO   |     | CURRENT_TIMESTAMP |(默认当前时间
     |
| dateTimeTest  | datetime         | YES  |     | NULL              |
     |
+---------------+------------------+------+-----+-------------------+-----------
-----+
3 rows in set (0.00 sec)

mysql> insert into my_t8 values(now(),now());
ERROR 1136 (21S01): Column count doesn't match value count at row 1

mysql> insert into my_t8(dateTimeTest) values( now());
Query OK, 1 row affected (0.02 sec)

mysql> select * from my_t8;
+----+---------------------+---------------------+
| id | timestampTest       | dateTimeTest        |
+----+---------------------+---------------------+
|  1 | 2010-08-25 09:26:04 | 2010-08-25 09:26:04 |
+----+---------------------+---------------------+
1 row in set (0.00 sec)

mysql> set time_zone='+9:00'
    -> ;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from my_t8;
+----+---------------------+---------------------+
| id | timestampTest       | dateTimeTest        |
+----+---------------------+---------------------+
|  1 | 2010-08-25 10:26: 04 | 2010-08-25 09:26 :04 |
+----+---------------------+---------------------+
1 row in set (0.00 sec)

mysql>
 

 

 

接下来 讨论一些timestamp 的其他的属性

1  null 是否为空

 1.1  timestamp 默认允许为 “非空”(not null by default), 如果你在定义“ts TIMESTAMP  DEFAULT NULL” 是非法的。
 1.2 可以指定为空 null ,“ts TIMESTAMP NULL"  ,这时可以在添加语句改变默认值。
    ts2 TIMESTAMP NULL DEFAULT 0,
    ts3 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
2  default (一个表中只能有一个列选择下面其中一种)

2.1  default CURRENT_TIMESTAMP
2.2  default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
2.3   ON UPDATE CURRENT_TIMESTAMP
       2.3 的 ON UPDATE  见上2


  mysql 中的datetime和timestamp的比较 收藏
 相同

显示
TIMESTAMP列的显示格式与DATETIME列相同。换句话说,显示宽度固定在19字符,并且格式为YYYY-MM-DD HH:MM:SS。
不同

范围
     datetime 以'YYYY-MM-DD HH:MM:SS'格式检索和显示DATETIME值。支持的范围为'1000-01-01 00:00:00'到'9999-12-31 23:59:59'
     TIMESTAMP值不能早于1970或晚于2037
储存
     TIMESTAMP

 
4个字节储存(Time stamp value is stored in 4 bytes)
值以UTC格式保存( it stores the number of milliseconds)
时区转化 ,存储时对当前的时区进行转换,检索时再转换回当前的时区。
     datetime

8个字节储存(8 bytes storage)
实际格式储存(Just stores what you have stored and retrieves the same thing which you have stored.)
与时区无关(It has nothing to deal with the TIMEZONE and Conversion.)


实例对比

现在我来做个时区对他们的影响。

先插入一个数据insert into `t8` values(now(), now());
改变客户端时区(东9区,日本时区)。
再次显示插入的数据,变化了,timestamp类型的数据 增加了 1个小时。



接下来 讨论一些timestamp 的其他的属性

null 是否为空

timestamp 默认允许为 “非空”(not null by default), 如果你在定义“ts TIMESTAMP  DEFAULT NULL” 是非法的。
可以指定为空 null ,“ts TIMESTAMP NULL"  ,这时可以在添加语句改变默认值。
ts2 TIMESTAMP NULL DEFAULT 0,
ts3 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
default (一个表中只能有一个列选择下面其中一种)

default CURRENT_TIMESTAMP
default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
ON UPDATE CURRENT_TIMESTAMP
ON UPDATE  见上2
参考文档 http://dev.mysql.com/doc/refman/5.0/en/timestamp.html


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/cb_121/archive/2009/02/13/3888722.aspx

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/cb_121/archive/2009/02/13/3888722.aspx

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年11月    »
123
45678910
11121314151617
18192021222324
252627282930
搜索
标签列表
网站分类
最新留言
    文章归档
    友情链接

    Powered By Z-BlogPHP 1.7.3

    Copyright Your WebSite.Some Rights Reserved.闽ICP备11018667号-2