案例如下:
集合A,B,分别有a,b,c,d,e属性,要求从集合A中根据关联属性剔除掉B集合中的数据,得到新的数据集C,C的展示属性为a,b,其中关联属性为a,b,c。
即:遍历集合A中每条数据,判定集合B中不存在与集合A中属性a,b,c相等的数据则符合要求并保存在集合C中。
要求:同一个应用服务下,同一用户
具体操作如下:
> db.A.find() { "_id" : ObjectId("5018da521781352fe25bf4d2"), "a" : "1", "b" : "1", "c" : "1", "d" : "1", "e" : "1" } { "_id" : ObjectId("5018da5a1781352fe25bf4d3"), "a" : "2", "b" : "2", "c" : "2", "d" : "2", "e" : "2" } { "_id" : ObjectId("5018da821781352fe25bf4d4"), "a" : "3", "b" : "3", "c" : "3", "d" : "3", "e" : "3" } { "_id" : ObjectId("5018da891781352fe25bf4d5"), "a" : "4", "b" : "4", "c" : "4", "d" : "4", "e" : "4" } { "_id" : ObjectId("5018da931781352fe25bf4d6"), "a" : "5", "b" : "5", "c" : "5", "d" : "5", "e" : "5" } { "_id" : ObjectId("5018da9d1781352fe25bf4d7"), "a" : "6", "b" : "6", "c" : "6", "d" : "6", "e" : "6" } { "_id" : ObjectId("5018daa71781352fe25bf4d8"), "a" : "7", "b" : "7", "c" : "7", "d" : "7", "e" : "7" } { "_id" : ObjectId("5018daa71781352fe25bf4d9"), "a" : "8", "b" : "8", "c" : "8", "d" : "8", "e" : "8" } { "_id" : ObjectId("5018daa71781352fe25bf4da"), "a" : "9", "b" : "9", "c" : "9", "d" : "9", "e" : "9" } { "_id" : ObjectId("5018daa71781352fe25bf4db"), "a" : "10", "b" : "10", "c" : "10", "d" : "10", "e" : "10" } { "_id" : ObjectId("5018daa71781352fe25bf4dc"), "a" : "11", "b" : "11", "c" : "11", "d" : "11", "e" : "11" } { "_id" : ObjectId("5018daa71781352fe25bf4dd"), "a" : "12", "b" : "12", "c" : "12", "d" : "12", "e" : "12" } { "_id" : ObjectId("5018daa71781352fe25bf4de"), "a" : "13", "b" : "13", "c" : "13", "d" : "13", "e" : "13" } { "_id" : ObjectId("5018daa71781352fe25bf4df"), "a" : "14", "b" : "14", "c" : "14", "d" : "14", "e" : "14" } { "_id" : ObjectId("5018daae1781352fe25bf4e0"), "a" : "15", "b" : "15", "c" : "15", "d" : "15", "e" : "15" }
> db.B.find() { "_id" : ObjectId("5018dac11781352fe25bf4e1"), "a" : "1", "b" : "1", "c" : "1"} { "_id" : ObjectId("5018dac11781352fe25bf4e2"), "a" : "2", "b" : "2", "c" : "2"} { "_id" : ObjectId("5018dac11781352fe25bf4e3"), "a" : "3", "b" : "3", "c" : "3"} { "_id" : ObjectId("5018dac11781352fe25bf4e4"), "a" : "4", "b" : "4", "c" : "4"} { "_id" : ObjectId("5018dac11781352fe25bf4e5"), "a" : "5", "b" : "5", "c" : "5"} { "_id" : ObjectId("5018dac11781352fe25bf4e6"), "a" : "6", "b" : "6", "c" : "6"} { "_id" : ObjectId("5018dac11781352fe25bf4e7"), "a" : "7", "b" : "7", "c" : "7"} { "_id" : ObjectId("5018dac11781352fe25bf4e8"), "a" : "8", "b" : "8", "c" : "8"} { "_id" : ObjectId("5018dac11781352fe25bf4e9"), "a" : "9", "b" : "9", "c" : "9"} { "_id" : ObjectId("5018dac11781352fe25bf4ea"), "a" : "20", "b" : "20", "c" : "20" } { "_id" : ObjectId("5018dac31781352fe25bf4eb"), "a" : "21", "b" : "21", "c" : "21" }
> db.A.find().forEach( ... function(x){ ... var obj1 = db.B.findOne({"a":x.a,"b":x.b,"c":x.c}); ... if(obj1 == undefined || obj1 == null) ... { ... var obj2 = {"a":x.a,"b":x.b} ... db.C.insert(obj2); ... } ... } ... )
> db.C.find() { "_id" : ObjectId("5018fccd1781352fe25bf50d"), "a" : "10", "b" : "10" } { "_id" : ObjectId("5018fccd1781352fe25bf50e"), "a" : "11", "b" : "11" } { "_id" : ObjectId("5018fccd1781352fe25bf50f"), "a" : "12", "b" : "12" } { "_id" : ObjectId("5018fccd1781352fe25bf510"), "a" : "13", "b" : "13" } { "_id" : ObjectId("5018fccd1781352fe25bf511"), "a" : "14", "b" : "14" } { "_id" : ObjectId("5018fccd1781352fe25bf512"), "a" : "15", "b" : "15" }
实际处理脚本,从集合A中查找文档并循环遍历:
> db.A.find().forEach( function(x){ --以集合A中的每条文档的a,b,c属性做条件查找集合B var obj1 = db.B.findOne({"a":x.a,"b":x.b,"c":x.c}); --若找不到,即在集合B中不存在,则满足要求 if(obj1 == undefined || obj1 == null) { --创建新的文档并保存在集合C中 var obj2 = {"a":x.a,"b":x.b} db.C.insert(obj2); } } )
相关推荐
MongoDB数据库-四书五经-孟子,导入即可使用 MongoDB数据库-四书五经-孟子,导入即可使用 MongoDB数据库-四书五经-孟子,导入即可使用 MongoDB数据库-四书五经-孟子,导入即可使用 MongoDB数据库-四书五经-孟子,...
MongoDB 数据库-四书五经-中庸,导入直接使用 MongoDB 数据库-四书五经-中庸,导入直接使用 MongoDB 数据库-四书五经-中庸,导入直接使用 MongoDB 数据库-四书五经-中庸,导入直接使用 MongoDB 数据库-四书五经-中庸...
MongoDB数据库文件-名言警句集合,导入即可使用 MongoDB数据库文件-名言警句集合,导入即可使用 MongoDB数据库文件-名言警句集合,导入即可使用 MongoDB数据库文件-名言警句集合,导入即可使用 MongoDB数据库文件-...
在爬虫开发中,MongoDB数据库和Scrapy框架是两个重要的工具,它们分别负责数据的存储和抓取。本文将详细讲解这两个知识点以及如何结合使用它们。 首先,让我们了解一下MongoDB。MongoDB是一款非关系型数据库(NoSQL...
5. **SSL支持**:在"mongodb-win32-x86_64-2008plus-ssl-4.0.9-signed.msi"中,"ssl"表示MongoDB支持安全套接字层(SSL),这使得数据库间的通信可以加密,增强了数据的安全性。 6. **Windows兼容**:该版本的...
首先,MongoDB数据库的核心概念包括文档、集合和数据库。文档是MongoDB中的数据结构,类似于JSON对象,由键值对组成,支持嵌套结构。集合是文档的集合,不预设固定的结构,允许动态扩展。数据库则是一组集合的容器,...
MongoDB Community Server(mongodb-linux-aarch64-ubuntu1804-5.0.8.tgz)适用于Ubuntu 18.04 Arm芯片, MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决...
在提供的压缩包"mongodb-database-tools-windows-x86_64-100.3.1.zip"中,包含了以下关键文件: 1. mongodump.exe:这是用于创建MongoDB数据库的逻辑备份的工具。它将数据库的数据和元数据转换为JSON或BSON格式的...
总的来说,"mongodb-async-driver-2.0.1.jar"这个包是Java开发者与MongoDB数据库交互的强大工具,它通过异步I/O和事件驱动的编程模型,提高了应用的并发能力和响应速度。通过这个驱动,开发者可以充分利用MongoDB的...
<artifactId>mongodb-driver-sync <version>4.3.0 ``` 创建MongoDB连接: 要连接到MongoDB服务器,我们需要实例化`MongoClient`对象。这通常涉及提供服务器地址、端口以及(如果适用)认证信息: ```java ...
`mongodb-driver-3.5.0.jar`是完整版的MongoDB Java驱动,它扩展了`mongodb-driver-core`,提供了更高级别的操作接口,如`MongoClient`和`MongoDatabase`,方便开发者进行数据库操作。这个驱动程序使开发者能够方便...
MongoDB Community Server(mongodb-org-server-5.0.8-1.el7.x86_64.rpm)适用于RedHat / CentOS 7.0 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。...
mongodb-windows安装包: mongodb-compass-1.31.2-win32-x64.msi 打开直接安装
MongoDB Community Server(mongodb-org-server_5.0.4_amd64.deb)适用于适用于Debian10 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。 MongoDB是...
在“mongodb-compass-community-1.16.4-win32-x64.zip”这个压缩包中,包含了MongoDB Compass的社区版,它可以帮助用户直观地查看和操作MongoDB数据库。以下是压缩包内各个文件的作用: 1. **snapshot_blob.bin**:...
mongodb-windows-x86_64-7.0.5-signed.msi 数据库构建工具
MongoDB Community Server(mongodb-org-server-5.0.4-1.el7.x86_64.rpm)适用于RedHat / CentOS 7.0 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。...
通过以上介绍,我们可以看出"mongodb-linux-x86_64-4.0.8.tgz"是一个包含MongoDB服务器及其相关工具的完整发行版,适合在Linux环境中部署和管理MongoDB数据库。理解并掌握这些知识点,将有助于您有效地利用MongoDB来...
MongoDB Community Server(mongodb-linux-x86_64-rhel70-5.0.4.tgz)适用于RedHat / CentOS 7.0 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。 ...
"mongodb-compass-1.27.1-win32-x64.zip"是一个针对Windows 64位系统的MongoDB Compass版本的压缩包。 MongoDB Compass的核心功能包括: 1. **数据可视化**:它提供了一个直观的界面来查看和理解数据库的结构,...