NoSql之旅-mongoDB shell命令總結,nosql-mongodb

來源:互聯網
上載者:User

NoSql之旅-mongoDB shell命令總結,nosql-mongodb
mongoDB三元素。資料庫,集合,文檔。


集合相當於關聯式資料庫中的表,文檔相當於表中的行。




文檔是json的擴充(Bson的形式)


mongoDB基本的增刪改查
insert
db.tablename.insert({Bson格式});


find
db.tablename.find()查詢所有


db.tablename.find({Bson格式})按關鍵字查詢


update
db.tablename.update({},{})第一個參數為查詢條件,第二個參數為更新的值


remove
db.person.remove()刪除所有的記錄,不可撤銷。
db.person.remove({})按條件刪除。
db.person.count()記錄總數。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.