mongoDB中distinct的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongoDB中distinct的使用相关的知识,希望对你有一定的参考价值。
需求:在mongodb中查询一个类型(数据库中可能百万条数据)用作下拉列表查询。
在工具中用 db.getCollection(‘order‘).distinct("typeName") 即可实现。
java 代码:
MongoCollection<Document> coll = this.client.getDatabase(this.databaseName).getCollection(‘order‘);
//获得mongodb数据库连接 getCollection表名
//this.databaseName 来自配置文件直接读取动态配置,即数据库名称
Iterable iterable = coll.distinct(‘typeName‘,String);
// String 查询的值 是什么类型,由于本次查询的为汉字,所以是String
MongoCursor it = iterable.iterator();
while(it.hasNext()) {
String typeName = it.next().toString()
System.out.pringln(typeName)
}
/*****
MongoCollection : com.mongodb.client.MongoCollection
Document:org.bson.Document
implements Map<String, Object>, Serializable, Bson
**/
以上是关于mongoDB中distinct的使用的主要内容,如果未能解决你的问题,请参考以下文章
mongodb ,出现distinct too big, 16mb cap,急,
使用 Pymongo 从 Mongodb 中的 Sql 转换“distinct on”查询