您的纪元值
1389422614485似乎具有毫秒精度。因此,您需要使用一些mysql数学函数以及
from_unixtime()生成人类可读格式。
mysql> select from_unixtime(floor(1389422614485/1000));+------------------------------------------+| from_unixtime(floor(1389422614485/1000)) |+------------------------------------------+| 2014-01-11 12:13:34|+------------------------------------------+



