0
第一次使用Mongo Shell。試圖做一個簡單的查詢,但得到一個語法錯誤。
實施例中docsdb.bios.find({ _id: 5 })
如何正確地查詢我使用shell的mongo db?
第一次使用Mongo Shell。試圖做一個簡單的查詢,但得到一個語法錯誤。
實施例中docsdb.bios.find({ _id: 5 })
如何正確地查詢我使用shell的mongo db?
給出嘗試初級講座:
db.polls.find({"_id":ObjectId("542642....")})
的屬性不是字符串或整數但對象
感謝。