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.
我正在使用以下命令在联系人集合中查找记录
db.contacts.find({"field1":"1"})
问题是我想将 field1 的别名用作 SL.NO
我试过这种方式,但它不起作用......
db.contacts.find({"field :n, as: :SL.NO" : "1"}
任何人都可以在这个问题上帮助我吗?
顺便说一句,我目前正在使用 mongo 1.6.5
像 Mongoose 这样的一些驱动程序支持该功能,但 MongoDB 本身或 Mongo shell 中没有此类功能。