mysql 時間戳記有效範圍,mysql範圍

來源:互聯網
上載者:User

mysql 時間戳記有效範圍,mysql範圍

事情

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)儲存時間, 而不用數值.

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.