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 数据库。在那里我有一个表,其中有一列称为日期。该列的类型是String。该列包含一个时间戳值(即1370842140205)。
如何选择该值作为日期?- 10.6.2013 5.29.00
使用FROM_UNIXTIME
SELECT FROM_UNIXTIME(`date` / 1000.0) from your_table
并从时间戳中删除毫秒/1000。
/1000