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位微秒值后,输出也保持不变。
广告