码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB 实现 create table tab2 as select

时间:2019-12-18 12:51:39      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:table   ble   gre   god   temp   mon   foo   agg   from   

1、

var result = db.foo.aggregate(...);
db.bar.insert(result.result);

2、

var temp1 = db.mtb1.find(name:"joe");
while(temp1.hasNext()) db.tab2.insert(temp1.next());
相当于sql中:create table tab2 as select * from mtb1 where name=‘joe‘;

MongoDB 实现 create table tab2 as select

标签:table   ble   gre   god   temp   mon   foo   agg   from   

原文地址:https://www.cnblogs.com/xibuhaohao/p/12059135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!