MongoDB學習(三)MongoDB shell 命令列的使用

來源:互聯網
上載者:User

首先要啟動MongoDB shell工具,即bin下的mongo.exe

常用shell命令如下:

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

> show dbs;

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

> use dbtest;

切換至dbtest庫或建立名為dbtest的庫
3、查詢當前庫下的所有聚集集合collection(相當於table)

> show collections;

4、建立聚集集合

> db.createCollection('employee');

建立了一個名為'employee'的聚集集合
5、插入資料

> db.employee.insert({'uname':'teddy','age':24,'salary':11000});

往'employee'聚集集合中插上一條數庫,name為'teddy',age為'24',salary為'11000'

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

> db.employee.count();

7、查詢age為了23的資料

> db.employee.find({"age":23});

8、查詢salary大於5000的資料

> db.employee.find({salary:{$gt:5000}});

9、查詢age小於23,salary大於8000的資料

> db.employee.find({age:{$lt:24}},{salary:{$gt:8000}});

10、查詢salary小於4000或salary大於20000的資料

> db.employee.find({$or: [{salary: {$lt:4000}}, {salary: {$gt:20000}}]});

11、查詢指定列的資料

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

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

> db.employee.find({uname:/e/});

13、查詢以a打頭的資料

> db.employee.find({uname:/^a/});

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

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

15、查詢前10條資料

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

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

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

17、查詢第一條資料

> db.employee.findOne();

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

db.employee.find({$or: [{salary: {$lt:4000}}, {salary: {$gt:10000}}]}).count();

19、按salary升序排序

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

按照salary欄位升序排序

20、降序

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

按照salary欄位降序排序

 21、根據uname修改age

> db.employee.update({uname:'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、將指定uname的age欄位增加5

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

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

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

24、集合collection重新命名

> db.employee.renameCollection('t_emp');

將employee集合重新命名為't_emp'

25、刪除集合

> db.emp_test.drop();

刪除名為'emp_test'的集合

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.