code_snippets/mongodb_operations

6 lines
276 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

利用js代码从mongodb中导出查询数据到文件中
var c = db.list_users_sponsor_listing.find({sponsorsListing:{$ne:null}});
while(c.hasNext()) {
    printjson(c.next());
}
mongo localhost:27017/ghtorrent0619 sponsorsListing_notnull.js > sponsorsListing_notnull.json