0

我有一个包含以下文档的 MongoDB 集合。有些文档有 1 个字段,有些有 2 个。我有兴趣仅将具有 2 个字段的文档导出到 CSV 文件。我可以使用什么查询来排除具有 1 个字段的那些?

[
{
    "id" : 1,
},

{
    "id" : 2,
},

{
   "id" : 3
   "productId": 300
}
]

我的 mongoexport 命令是: mongoexport --username x --password x --host x --db mydb --collection mycol --type=csv --fields id,productid --out "c:\myfile.csv"

4

1 回答 1

-1

试试这个我添加了查询的地方

mongoexport --username x --password x --host x --db mydb --collection mycol --type=csv --fields id,productid --query '{ "$and": [ { "id": {"$exists":true}},{"productId":{"$exists":true}}] }' --out "c:\myfile.csv"

或者它可能是这样的

mongoexport --username x --password x --host x --db mydb --collection mycol --type=csv --fields id,productid --query '{ "id": {"$exists":true},"productId":{"$exists":true} }' --out "c:\myfile.csv"
于 2016-04-01T05:41:21.060 回答