MongoDB 实现 create table tab2 as select
Posted xibuhaohao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB 实现 create table tab2 as select相关的知识,希望对你有一定的参考价值。
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());
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的主要内容,如果未能解决你的问题,请参考以下文章
错误代码: 1005 Can't create table 'hibernate.bill' (errno: 150)
ERROR 1005 (HY000): Can't create table'matrix.system_log' (errno: 150)
Mysql错误问题:ERROR 1005 (HY000): Can't create table 'crm_1.tbl_client' (errno: 150)