当前位置:首页 > IT技术 > 数据库 > 正文

mongodb 中合并相同的表
2021-10-07 11:24:55

const books3 = await Book3.find({}).exec()

    for(const item of books3) {
      const d = JSON.parse(JSON.stringify(item))
      delete d.id
      await new Book(d).save()
    }
   
// 把book3中的表插入到book中
// 把原来的表数据遍历一下,删除ID,然后插入数据

本文摘自 :https://www.cnblogs.com/

开通会员,享受整站包年服务立即开通 >