MySQL 在将时间戳值中的微秒添加到整数时会返回什么?
我们知道,借助 UNIX_TIMESTAMP() 函数,可以将时间戳的值转换成数字秒。MySQL 会忽略添加到时间戳值中的微秒,因为 UNIX_TIMESTAMP 的值为只有 10 位数字。
示例
mysql> SELECT UNIX_TIMESTAMP('2017-10-22 04:05:36')AS 'Total Number of Seconds'; +-------------------------+ | Total Number of Seconds | +-------------------------+ | 1508625336 | +-------------------------+ 1 row in set (0.00 sec) mysql> SELECT UNIX_TIMESTAMP('2017-10-22 04:05:36.200000')AS 'Total Number of Seconds'; +-------------------------+ | Total Number of Seconds | +-------------------------+ | 1508625336 | +-------------------------+ 1 row in set (0.00 sec)
上面的查询显示,即使添加了 6 位微秒值,输出仍保持不变。
广告