本文介绍了如何使用mongoexport导出排序的数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在mongo中有一个集合,其中包含名称和计数字段.
I have a collection in mongo which has name and count fields.
{name:'myName',count:5}
是否可以使用mongoexport按计数对数据进行排序并导出为json?
Is it possible to sort data by count and export as json using mongoexport?
推荐答案
实际上可以,但是必须使用特殊的参数.这是一个示例(重定向到文件):
Actually you can, but you have to use special params. Here's a sample (redirecting to file):
$ mongoexport -q '{ $query: {count: {$gt:0}}, $orderby: {count: -1} }' -d database -c collection > data_dump.json
$ query部分不是严格必需的,但由于GitHub上的此错误,我将其包括在内(已修复现在,但仅仅是).
The $query part is not strictly necessary, but I included it because of this bug on GitHub (fixed now, but only just).
这篇关于如何使用mongoexport导出排序的数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!