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 DB 转换为 MongoDB。
一个字段 publish_datetime 是一个 MYSQL 日期时间字段。
在 mongo 中,我需要按该日期时间字段进行排序。
如果不将其转换为单独的字段作为时间戳,这是否可能?
它是哪种类型并不重要,对 DateTime 值或整数值进行排序发生在:
db.collection.find().sort( { field_name: 1 } );
但是,如果您显示其中包含“日期时间”值的示例文档,将会很有帮助。