標籤:
項目中使用到了mongoDB,基本是用RoboMongo串連伺服器,做一些許可權較低的增刪改查操作。命令時常會忘,在此記錄一些針對集合的使用頻率很高的命令,方便查詢:
1、建立一個聚集集合(table) db.createCollection(“collName”, {size: 20, capped: 5, max: 100});2、得到指定名稱的聚集集合(table) db.getCollection("account");3、得到當前db的所有聚集集合 db.getCollectionNames();4、顯示當前db所有叢集索引的狀態 db.printCollectionStats();
集合的查詢:
1、查詢所有記錄db.userInfo.find();相當於:select* from userInfo;預設每頁顯示20條記錄,當顯示不下的情況下,可以用it迭代命令查詢下一頁資料。注意:鍵入it命令不能帶“;”但是你可以設定每頁顯示資料的大小,用DBQuery.shellBatchSize= 50;這樣每頁就顯示50條記錄了。 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 <= 26db.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 > 25db.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、刪除指定索引db.users.dropIndex("name_1"); 6、刪除所有索引索引db.users.dropIndexes();
增刪改:
1、添加db.users.save({name: ‘zhangsan’, age: 25, sex: true});添加的資料的資料列,沒有固定,根據添加的資料為準 2、修改db.users.update({age: 25}, {$set: {name: ‘changeName‘}}, false, true);相當於:update users set name = ‘changeName’ where age = 25; db.users.update({name: ‘Lisi‘}, {$inc: {age: 50}}, false, true);相當於:update users set age = age + 50 where name = ‘Lisi’; db.users.update({name: ‘Lisi‘}, {$inc: {age: 50}, $set: {name: ‘hoho‘}}, false, true);相當於:update users set age = age + 50, name = ‘hoho’ where name = ‘Lisi’; 3、刪除db.users.remove({age: 132}); 4、查詢修改刪除db.users.findAndModify({ query: {age: {$gte: 25}}, sort: {age: -1}, update: {$set: {name: ‘a2‘}, $inc: {age: 2}}, remove: true});
db.runCommand({ findandmodify : "users",
query: {age: {$gte: 25}},
sort: {age: -1},
update: {$set: {name: ‘a2‘}, $inc: {age: 2}},
remove: true
});
如果有興趣可以試試語句塊的操作:
1、簡單Hello Worldprint("Hello World!");這種寫法調用了print函數,和直接寫入"Hello World!"的效果是一樣的; 2、將一個對象轉換成jsontojson(new Object());tojson(new Object(‘a‘)); 3、迴圈添加資料> for (var i = 0; i < 30; i++) {... db.users.save({name: "u_" + i, age: 22 + i, sex: i % 2});... };這樣就迴圈添加了30條資料,同樣也可以省略括弧的寫法> for (var i = 0; i < 30; i++) db.users.save({name: "u_" + i, age: 22 + i, sex: i % 2});也是可以的,當你用db.users.find()查詢的時候,顯示多條資料而無法一頁顯示的情況下,可以用it查看下一頁的資訊; 4、find 遊標查詢>var cursor = db.users.find();> while (cursor.hasNext()) { printjson(cursor.next()); }這樣就查詢所有的users資訊,同樣可以這樣寫var cursor = db.users.find();while (cursor.hasNext()) { printjson(cursor.next); }同樣可以省略{}號 5、forEach迭代迴圈db.users.find().forEach(printjson);forEach中必須傳遞一個函數來處理每條迭代的資料資訊 6、將find遊標當數組處理var cursor = db.users.find();cursor[4];取得下標索引為4的那條資料既然可以當做數組處理,那麼就可以獲得它的長度:cursor.length();或者cursor.count();那樣我們也可以用迴圈顯示資料for (var i = 0, len = c.length(); i < len; i++) printjson(c[i]); 7、將find遊標轉換成數組> var arr = db.users.find().toArray();> printjson(arr[2]);用toArray方法將其轉換為數組 8、定製我們自己的查詢結果只顯示age <= 28的並且只顯示age這列資料db.users.find({age: {$lte: 28}}, {age: 1}).forEach(printjson);db.users.find({age: {$lte: 28}}, {age: true}).forEach(printjson);排除age的列db.users.find({age: {$lte: 28}}, {age: false}).forEach(printjson); 9、forEach傳遞函數顯示資訊db.things.find({x:4}).forEach(function(x) {print(tojson(x));});
mongodb 基本命令