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.
当我开始我的网站时,我以纪元格式存储了所有时间数据,现在这给我带来了一些问题,因此我遇到了麻烦,尤其是。随着2013年的到来。
我想知道的是,我是否将所有数据(纪元格式时间)转换为数据库中的人类可读时间?
我的数据库有大量数据,否则我会尝试循环并将每个纪元标记转换为人类可读的时间。在数据库中。
不要在没有先备份的情况下这样做!
UPDATE my_table SET my_column = DATE_FORMAT(FROM_UNIXTIME(my_column), '%Y-%m-%d %H:%i:s') WHERE 1;