我正在尝试使用以下命令将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
命令有什么问题?