gpt4 book ai didi

mongodb - remove 需要在 src/mongo/shell/collection.js 查询

转载 作者:IT老高 更新时间:2023-10-28 13:04:14 25 4
gpt4 key购买 nike

运行 db.messages.remove() 时出现此错误。 “删除需要在 src/mongo/shell/collection.js 进行查询”。有解决此错误的建议吗?

最佳答案

正如消息所说,您需要提供一个查询,但它可以是一个空的(如果您想删除所有文档):

db.messages.remove({})

编辑:我想强调 Stennie 的评论:

Note: if you actually want to remove all documents in a collection it is faster to a do a collection.drop(). The remove() operation will delete documents individually & update indexes as the documents are deleted; a drop() will immediately delete all documents & indexes for the collection.

关于mongodb - remove 需要在 src/mongo/shell/collection.js 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25104095/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com