我正在尝试使用以下命令将 mongoexport(2.6 版)MongoDB 数据转换为 csv 格式
$ mongoexport --port 27017 -d test -q {userId:123 , name:'John'} -c user_datas -f userId --csv -o /myOutFile.csv
我得到
"Error parsing command line: too many positional options have been specified on the command line"
但是,如果我分别查询这两个条件,它就可以正常工作:
$ mongoexport --port 27017 -d test -q {userId:123} -c user_datas -f userId --csv -o /myOutFile.csv
和
$ mongoexport --port 27017 -d test -q {name:'John'} -c user_datas -f userId --csv -o /myOutFile.csv
mongoexport
第一个命令的问题是什么?