Home >Database >Mysql Tutorial >mysql时间戳有效范围_MySQL

mysql时间戳有效范围_MySQL

WBOY
WBOYOriginal
2016-06-01 13:01:211509browse

事情

from_unixtime/unix_timestamp溢出, 无法使用

起因

from_unixtime返回的结果从1970-01-01到现在为止的秒数, 是int型的结果, 而int的有效范围是[-2^31 + 1, 2^31 -1], 即[-2147483648, 2147483648], 2147483648/365/24/3600换算成年也就68年多, 则最大有效期是2038年的一天.

处理

兼容之前的处理, 先可以使用, 则先减后加30年, 则可以暂时向后扩展30年.

select date_add(from_unixtime(2524464000-946656000), interval 30 year);

select (unix_timestamp(date_add('2050-01-01 00:00:00', interval -30 year)) + 946656000);

不过, 目前的做法则是, 数据表增加一个字段, 直接用varchar(10)保存时间, 而不用数值.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn