xywuyiba8 发表于 2018-10-26 11:12:48

MongoDB数据库学习笔记

  一、Mongodb数据库之增删改查
  show databases
  show dbs    //显示数据库;
  show tables
  show collections    //查示表或者集合;
  use imooc//使用或创建数据库imooc;
  增:
  use imooc
  db.imooc_collection.insert({x:1})    //往集合名“imooc_collection”插入单条数据“x:1”;
  db.imooc_collection.insert({x:2})    //往集合名“imooc_collection”插入单条数据“x:2”;
  db.imooc_collection.insert({x:100,y:100,z:100})    //往集合名“imooc_collection”插入多字段单条数据;
  for(i=3;i
页: [1]
查看完整版本: MongoDB数据库学习笔记