摘要:
MongoDB聚合查询 创建测试数据 db.student.drop() db.student.insertOne({_id: 1,name: "zhangsan",age: 12,teacher: ["Tom","Jack"]}) db.student.insertOne({_id: 2,name 阅读全文
摘要:
MongoDB增删改查 MongoDB的数据插入 insert的基本用法 语法 db.collection.insert( <document or array of documents>, { writeConcern: <document>, ordered: <boolean> } ) 第一列 阅读全文