當前位置:首頁 > IT技術(shù) > 數(shù)據(jù)庫 > 正文

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中
// 把原來的表數(shù)據(jù)遍歷一下,刪除ID,然后插入數(shù)據(jù)

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

開通會員,享受整站包年服務(wù)立即開通 >