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.
我们有一个脚本可以在表格中保存一些行,其中一个用Time.now.to_f. 所以我们有如下价值观:
Time.now.to_f
1330017921.1065 1330018520.80347
有没有办法直接在 MySQL 中将其转换为日期,我现在可以使用Time.at,但我需要一个行 mysql 查询。
Time.at
我想这是一个微型时间。
如果你不需要毫秒,你可以查询类似
SELECT * FROM table WHERE datefield = FROM_UNIXTIME(rounded_unixtime)
在你的情况下 rounded_unixtime 是 1330017921