MongoDB shell操作

來源:互聯網
上載者:User

           shell命令操作文法和JavaScript很類似,其實控制台底層的查詢語句都是用JavaScript指令碼完成操作的。使用shell 命令,需要啟動mongo.exe。

        

常用shell命令如下:

       1、查詢本地所有資料庫名稱        

> show dbs;

       2、切換至指定資料庫環境(若無指定的資料庫,則建立新的庫)

> use mydb;

       3、查詢當前庫下的所有聚集集合collection(相當於table)

> show collections;

       4、建立聚集集合

> db.createCollection('mycollection');

       5、查詢聚集集合中資料條數

> db.mycollection.count();

           6、插入資料

> db.mycollection.insert({'username':'xyz_lmn','age':26,'salary':120});

往'mycollection'聚集集合中插上一條數庫,name為'xyz_lmn',age為'26',salary為'120'

       7、查詢age等於26的資料

> db.mycollection.find({"age":26});

       8、查詢salary大於100的資料

> db.mycollection.find({salary:{$gt:100}});

      9、查詢age小於30,salary大於100的資料

> db.mycollection.find({age:{$lt:30}},{salary:{$gt:100}});

     10、查詢salary小於40或salary大於200的資料

> db.mycollection.find({$or: [{salary: {$lt:40}}, {salary: {$gt:200}}]});

     11、查詢指定列的資料

> db.mycollection.find({},{age:1,salary:1});

1表示顯示此列的意思,也可以用true表示
     12、查詢username中包含'e'的資料

> db.mycollection.find({username:/e/});

      13、查詢以a打頭的資料

> db.mycollection.find({username:/^a/});

      14、查詢age列資料,並去掉重複資料

> db.mycollection.distinct('age');

      15、查詢前10條資料

> db.mycollection.find().limit(10);

      16、查詢1條以後的所有資料

> db.mycollection.find().skip(1);

      17、查詢第一條資料

> db.mycollection.findOne();

      18、查詢結果集的記錄數(查詢salary小於40或大於100的記錄數)

db.mycollection.find({$or: [{salary: {$lt:40}}, {salary: {$gt:100}}]}).count();

      19、按salary升序排序

> db.mycollection.find().sort({salary:1});

按照salary欄位升序排序

      20、降序

> db.mycollection.find().sort({salary:-1});

按照salary欄位降序排序

       21、根據username修改age

> db.employee.update({username:'jim'},{$set:{age:22}},false,true);

db.collection.update( criteria, objNew, upsert, multi )

criteria : update的查詢條件,類似sql update查詢內where後面的
objNew   : update的對象和一些更新的操作符(如$,$inc...)等,也可以理解為sql update查詢內set後面的
upsert   : 如果不存在update的記錄,是否插入objNew,true為插入,預設是false,不插入。
multi    : mongodb預設是false,只更新找到的第一條記錄,如果這個參數為true,就把按條件查出來多條記錄全部更新。

       22、將指定username的age欄位增加5

> db.mycollection.update({username:'jim'},{$inc:{age:5}},false,true);

將username為‘jim’的age欄位加5
       23、刪除username為'rose'的資料

> db.mycollection.remove({uname:'rose'});

       24、集合collection重新命名

> db.mycollection.renameCollection('c_temp');

將mycollection集合重新命名為'c_temp'

       25、刪除集合

> db.c_temp.drop();

刪除名為'c_temp'的集合

        26、刪除當前資料庫

> db.dropDatabase();


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.