• MongoDB集合数据操作

    日期:

    1.查看已有集合 show collections 2.向集合中添加数据 db.runoob.insert({ title:test, description:this is description, by:suyanzhu, url:http://blog.51cto.com/suyanzhu, tags:[php,java,mongodb], likes:100 }) 3.查看集合中数据信息 db.runoob.find()...

  • MongoDB删除数据

    日期:

    1.查看集合 show collections 2.向集合中添加数据 db.runoob.insertMany([ { title:data1, url:http://blog.51cto.com/suyanzhu, description:this is data1 }, { title:data2, url:http://blog.51cto.com/suyanzhu, description:this is data2 } ]) 3.查看...

  • MongoDB数据删除

    日期:

    1.查看集合 show collections 2.向集合中添加数据 db.runoob.insertOne( { title:remove method, url:http://blog.51cto.com/suyanzhu, description:this is my blog } ) db.runoob.insertMany([ { title:data1, url:http://blog.51cto.com/suyanzhu, descri...

  • MongoDB删除集合所有数据

    日期:

    1.查看集合中数据,并进行格式 db.runoob.find().pretty() 2.删除所有数据 db.runoob.remove({}) 3.查看集合中的数据,并进行格式 db.runoob.find().pretty()...

  • MongoDB删除找到的数据中第一条

    日期:

    1.查看集合 show collections 2.查看集合中数据 db.runoob.find().pretty() 3.删除找到的第一条记录 db.runoob.remove({title:demo multi},1) 4.查看集合中的数据,并进行格式 db.runoob.find().pretty()...

  • MongoDB删除集合中数据

    日期:

    1.查看集合 show collections 2.查看集合中数据 db.runoob.find().pretty() 3.删除指定数据 db.runoob.remove({title:test update}) 4.查看集合中的数据,并进行格式 db.runoob.find().pretty()...

  • MongoDB通过Save修改数据

    日期:

    1.查看集合 show collections 2.查看集合中数据 db.runoob.find().pretty() 3.修改集合中多条数据 db.runoob.save({ _id: ObjectId(5bce9025cd35ce6f77bf0198), test:4 }) 4.查看集合中的数据,并进行格式 db.runoob.find().pretty()...

  • MongoDB数据查询

    日期:

    1.查看集合 show collections 2.向集合中添加数据 db.runoob.insertMany([ { title:data1, url:http://blog.51cto.com/suyanzhu, description:this is data1, view:5000 }, { title:data2, url:http://blog.51cto.com/suyanzhu, description:this is data2,...

  • MongoDB多条件查询

    日期:

    1.查看集合 show collections 2.向集合中添加数据 db.runoob.insertMany([ { title:data1, url:http://blog.51cto.com/suyanzhu, description:this is data1, view:5000 }, { title:data2, url:http://blog.51cto.com/suyanzhu, description:this is data2,...

  • MongoDB查询返回指定键

    日期:

    1.查看集合 show collections 2.向集合中添加数据 db.runoob.insertMany([ { title:data1, url:http://blog.51cto.com/suyanzhu, description:this is data1, view:5000 }, { title:data2, url:http://blog.51cto.com/suyanzhu, description:this is data2,...