>  기사  >  데이터 베이스  >  MySQL中DATETIME跟TIMESTAMP的区别

MySQL中DATETIME跟TIMESTAMP的区别

WBOY
WBOY원래의
2016-06-07 16:26:571148검색

MySQL中DATETIME和TIMESTAMP的区别 先Copy一份文档给大家看: DateTime A date and time combination. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'. MySQL displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format, but allow

MySQL中DATETIME和TIMESTAMP的区别

先Copy一份文档给大家看:

DateTime
A date and time combination. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'.
 MySQL displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format, but allows you to assign values to DATETIME columns using either strings or numbers.
TimeStamp
A timestamp. The range is '1970-01-01 00:00:00' to partway through the year 2037. 
A TIMESTAMP column is useful for recording the date and time of an INSERT or UPDATE operation. 
The first TIMESTAMP column in a table is automatically set to the date and time of the most recent operation if you don't assign it a value yourself. 
You can also set any TIMESTAMP column to the current date and time by assigning it a NULL value.

现在开始具体比较:

DATETIME,字节数为8,取值范围为“1000-01-01 00:00:00——9999-12-31 23:59:59”

               对应Java类型为java.sql.Timestamp

           INSERT或UPDATE操作时系统不会自动修改其值,不可以设定默认值,为必须字段时必须手动插入,建议使用:new()

               MySql按照YYYY-MM-DD HH:MM:SS对数据进行格式化,允许以字符串和数字的方式提交

                  eg:insert into time_table(CreateDate) values(‘2014-06-09 15:01:01’)

                   或insert into time_table(CreateDate) values(‘20140609150101’)

TIMESTAMP,字节数为4,取值范围为“19700101080001——20380119111407”

               对应Java类型为java.sql.Timestamp

               INSERT或UPDATE操作时(且未手动赋值)系统会自动更新、插入当前系统时间,默认值为CURRENT_TIMESTAMP()

                             提交手动赋值为NULL时也会被赋值为当前系统时间,错误时会填入0

               使用TIMESTAMP一定要注意他的时间范围(见上)。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.