收藏示例:
key1 - site1
key1 - site1
key1 - site2
我需要一个结果,因为:
key1 - site1
key1 - site2
据我所知,可以在SQL中加入连接
能否请您建议我如何使用Python mongodb?
答案 0 :(得分:0)
您可以在mongodb中使用unique indexes。
您可以在键key1
上创建索引,这样整个集合中key1的值将是唯一的。
db.collection.createIndex({key1:1}, {unique:true})