1. 首页
  2. 数据库
  3. MongoDB
  4. mongodb入门篇

mongodb入门篇

上传者: 2021-05-05 07:49:24上传 DOCX文件 8.29MB 热度 17次
7.2.2. 数据写入 7.2.2.1. 插入普通json格式的文档数据 1. 查看当前库的所有表>show collections 2. db.collection.insert({x:1}) 7.2.2.2. 插入文档 1. 创建文档 >document = {x:1,y:2,z:3} 2. 插入数据 >db.collection.insert(document) 7.2.2.3. 插入多条数据 > for(i = 1; i
用户评论