BIGINT UNSIGNED value is out of range in有关问题

BIGINT UNSIGNED value is out of range in问题

MySQL server error report:Array ( [0] => Array ( [message] => MySQL Query Error ) [1] => Array ( [sql] => SELECT u.user_name, og.goods_number, oi.add_time, IF(oi.order_status IN (2, 3, 4), 0, 1) AS order_status FROM `yiwu86_beads86`.`ecs_order_info` AS oi LEFT JOIN `yiwu86_beads86`.`ecs_users` AS u ON oi.user_id = u.user_id, `yiwu86_beads86`.`ecs_order_goods` AS og WHERE oi.order_id = og.order_id AND 1349925442 - oi.add_time < 2592000 AND og.goods_id = 45880 ORDER BY oi.add_time DESC LIMIT 5 ) [2] => Array ( [error] => BIGINT UNSIGNED value is out of range in '(1349925442 - `xiaoyu_beads`.`oi`.`add_time`)' ) [3] => Array ( [errno] => 1690 ) )

 

这个问题是由于溢出得到一个负数,查了好久,原来是时间戳大了,就是时区设置错误了,最后在config.php 那里调整一下时区为上海时区就行了 $timezone    = "Asia/Shanghai";