Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 MySQL 数据库,我想一些时间戳是 Unix 格式的。
这些时间戳位于 bigint(20) 字段中。
我要为他们疯狂了。
如何将这些转换为常规时间戳?
例子:
634583466272408810
634587264000000000
尝试
select from_unixtime(634583466272408810/1000000000)
请参阅FROM_UNIXTIME