标签: mongodb
我是mongo db的新手 使用我必须删除像
select from table where id=12 and browser =GC
但我不知道如何在mongo db中执行此操作?
答案 0 :(得分:9)
使用remove
db.collectionName.remove({'_id':12,'browser':"GC"})
如果您展示您的收藏和文件,可以提供更准确的答案。