如何从Mongodb中的两个不同集合进行合并?

时间:2018-07-07 11:42:52

标签: mongodb union

我有两个这样的桌子

表1:

CREATE TABLE `table_1` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL,
  `date_added` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

INSERT INTO `table_1` (`id`, `name`, `status`, `date_added`) VALUES
(1, 'CNN', 1, '2018-07-01 00:00:01'),
(2, 'BBC', 1, '2018-07-03 00:00:01'); 

表2:

CREATE TABLE `table_2` (
  `id` int(11) NOT NULL,
  `title` varchar(100) NOT NULL,
  `status` int(11) NOT NULL,
  `date_added` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

INSERT INTO `table_2` (`id`, `title`, `status`, `date_added`) VALUES
(1, 'Windows', 1, '2018-07-02 00:00:01'),
(2, 'Linux', 1, '2018-07-04 00:00:01'); 

我的SQL查询是

SELECT * FROM
( 
 SELECT id, name, date_added FROM `table_1` 
 UNION 
 SELECT id, title as name, date_added FROM `table_2` 
) 
as new_table order by date_added ASC

我想要的结果如下:

id  name    date_added Ascending 1 

1   CNN     2018-07-01 00:00:01
1   Windows 2018-07-02 00:00:01
2   BBC     2018-07-03 00:00:01
2   Linux   2018-07-04 00:00:01

我无法在mongodb中得到这样的结果。

2 个答案:

答案 0 :(得分:1)

经过更多研究后,我能够在mongodb中找到带有Union的解决方案,如下所示:

db.table_1.aggregate([
    { 
    $lookup: {
        from: "table_2",
        pipeline: [],
        as: "table_2"
    }
    },
    {
    $addFields: {
        table_2: {
          $map: {
               input: "$table_2",
               as: "tbl2",
               in: { 
                "_id":"$$tbl2._id", 
                "type": "table_2", 
                "title": "$$tbl2.title", 
                "status": "$$tbl2.status",
                "date_added": "$$tbl2.date_added", 
               }
            }
        }
    }
    },
    {
    $group: {
        _id: null,
        table_1: {
            $push: {
                _id:"$_id",
                type: "table_1", 
                name: "$name",
                status: "$status",
                date_added: "$date_added"
            }
        },
        table_2: {
            $first: "$table_2"
        }
    }
    },
    {
    $project: {
        items: {
            $setUnion: ["$table_1", "$table_2"]
        }
    }
    },
    {
    $unwind: "$items"
    },
    {
    $replaceRoot: {
        newRoot: "$items"
    }
    },
    {
    '$match': { status: true} 
    },
    { '$sort': { date_added: -1 } },
    { '$limit': 10 } 
])

答案 1 :(得分:1)

从 mongo 4.4 开始,就有了 unionWith 操作符,这使它变得如此简单

db.table_1.aggregate( [
   { $set: { _id: "table_1" } },
   { $unionWith: { coll: "table_2", pipeline: [ { $set: { _id: "table_2" } } ] } },
   { $unionWith: { coll: "table_3", pipeline: [ { $set: { _id: "table_3" } } ] } },
   { $unionWith: { coll: "table_4", pipeline: [ { $set: { _id: "table_4" } } ] } },
] )