mongodb初學-常用基本命令

來源:互聯網
上載者:User
1、mongodb官網下載: https://www.mongodb.org/downloads  可以下載安裝版和解壓版;暫時選擇解壓安裝 2、cmd進入mongodb安裝目錄的bin下,啟動mongodb。 mongod開啟命令,同時用--dbpath指定資料存放地點為“db”檔案夾。 mongod --dbpath=E:\study\db mongod --dbpath= E:\study\db  --logpath= E:\study\db\ MongoDB.log --auth --port=27017 --fork 3、基本的增刪改查 (1)、shell下的操作 輸入mongo以後執行以下操作
 show dbs;顯示資料庫列表
show collections;顯示當前資料庫中的集合(類似關聯式資料庫中的表) show  users;顯示當期使用者; use myFirstDb;切換\建立資料庫
db.help();資料庫常用命令
db.cloneDatabase(“127.0.0.1”); 將指定機器上的資料庫的資料複製到當前資料庫
db.copyDatabase("mydb", "temp", "127.0.0.1");將原生mydb的資料複製到temp資料庫中
Collection聚集集合操作
1、建立一個聚集集合(table)
db.createCollection(“collName”, {size: 20,   capped:true, max: 100});#當為true時不能刪除,否則可以刪除
2、得到指定名稱的聚集集合(table)
db.getCollection("account");
db.getCollectionNames();
3、顯示當前db所有叢集索引的狀態
db.printCollectionStats();
使用者相關
1、添加一個使用者
db.createUser
舉例: db. createUser (    {user: "accountUser",pwd: "password",roles: [ "readWrite", "dbAdmin" ]}) 2、刪除使用者 db.dropUser("userName");
彙總(類似關係型資料庫的表)的詳細操作 查:db.dong.find();#類似 select * from  dong ; 但是你可以設定每頁顯示資料的大小,用DBQuery .shellBatchSize = 50; 這樣每頁就顯示50條記錄了。預設20用it迭代 增:db.dong.save({name:"dong",age:26});添加資料 改:db.dong.update({age:26},{$set:{name:'zhou'}});類似:update dong set name = 'zhou' where age = 26; 刪除:db.dong.remove({age:26});刪除age是26的資料(db.dong. isCapped()當時true是不能刪除 )  for(var i=0;i<20;i++){db.dong.save({name:"dong"+i,age:26+i})};
一些常用查詢命令: 2、查詢去掉後的當前聚集集合中的某列的重複資料 db.userInfo.distinct("name"); 會過濾掉name中的相同資料 相當於:select distict name from userInfo; 3、查詢age = 22的記錄 db.userInfo.find({"age": 22}); 相當於: select * from userInfo where age = 22; 4、查詢age > 22的記錄 db.userInfo.find({age: {$gt: 22}}); 相當於:select * from userInfo where age >22; 5、查詢age < 22的記錄 db.userInfo.find({age: {$lt: 22}}); 相當於:select * from userInfo where age <22; 6、查詢age >= 25的記錄 db.userInfo.find({age: {$gte: 25}}); 相當於:select * from userInfo where age >= 25; 7、查詢age <= 25的記錄 db.userInfo.find({age: {$lte: 25}}); 8、查詢age >= 23 並且 age <= 26 db.userInfo.find({age: {$gte: 23, $lte: 26}}); 9、查詢name中包含 mongo的資料 db.userInfo.find({name: /mongo/}); //相當於%% select * from userInfo where name like ‘%mongo%’; 10、查詢name中以mongo開頭的 db.userInfo.find({name: /^mongo/}); select * from userInfo where name like ‘mongo%’; 11、查詢指定列name、age資料 db.userInfo.find({}, {name: 1, age: 1}); 相當於:select name, age from userInfo; 當然name也可以用true或false,當用ture的情況下河name:1效果一樣,如果用false就是排除name,顯示name以外的列資訊。 12、查詢指定列name、age資料, age > 25 db.userInfo.find({age: {$gt: 25}}, {name: 1, age: 1}); 相當於:select name, age from userInfo where age >25; 13、按照年齡排序 升序:db.userInfo.find().sort({age: 1}); 降序:db.userInfo.find().sort({age: -1}); 14、查詢name = zhangsan, age = 22的資料 db.userInfo.find({name: 'zhangsan', age: 22}); 相當於:select * from userInfo where name = ‘zhangsan’ and age = ‘22’; 15、查詢前5條資料 db.userInfo.find().limit(5); 相當於:selecttop 5 * from userInfo; 16、查詢10條以後的資料 db.userInfo.find().skip(10); 相當於:select * from userInfo where id not in ( selecttop 10 * from userInfo ); 17、查詢在5-10之間的資料 db.userInfo.find().limit(10).skip(5); 可用於分頁,limit是pageSize,skip是第幾頁*pageSize 18、or與 查詢 db.userInfo.find({$or: [{age: 22}, {age: 25}]}); 相當於:select * from userInfo where age = 22 or age = 25; 19、查詢第一條資料 db.userInfo.findOne(); 相當於:selecttop 1 * from userInfo; db.userInfo.find().limit(1); 20、查詢某個結果集的記錄條數 db.userInfo.find({age: {$gte: 25}}).count(); 相當於:select count(*) from userInfo where age >= 20; 21、按照某列進行記數 db.userInfo.find({sex: {$exists: true}}).count(); 相當於:select count(sex) from userInfo; 索引 1、建立索引 db.userInfo.ensureIndex({name: 1}); db.userInfo.ensureIndex({name: 1, ts: -1}); 2、查詢當前聚集集合所有索引 db.userInfo.getIndexes(); 3、查看總索引記錄大小 db.userInfo.totalIndexSize(); 4、讀取當前集合的所有index資訊 db.users.reIndex();
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.