Version:1.0StartHTML:000000207EndHTML:000017268StartFragment:000002199EndFragment:000017218StartSelection:000002222EndSelection:000017182SourceURL:https://www.cnblogs.com/wpjzh/p/5999363.html
成功啟動MongoDB后脐彩,再打開一個命令行窗口輸入mongo哪工,就可以進行數(shù)據(jù)庫的一些操作躲庄。
輸入help可以看到基本操作命令:
show dbs:顯示數(shù)據(jù)庫列表? show collections:顯示當前數(shù)據(jù)庫中的集合(類似關(guān)系數(shù)據(jù)庫中的表)? show users:顯示用戶
use <db name>:切換當前數(shù)據(jù)庫漆撞,這和MS-SQL里面的意思一樣? db.help():顯示數(shù)據(jù)庫操作命令,里面有很多的命令? db.foo.help():顯示集合操作命令,同樣有很多的命令,foo指的是當前數(shù)據(jù)庫下,一個叫foo的集合宦言,并非真正意義上的命令? db.foo.find():對于當前數(shù)據(jù)庫中的foo集合進行數(shù)據(jù)查找(由于沒有條件,會列出所有數(shù)據(jù))? db.foo.find( { a : 1 } ):對于當前數(shù)據(jù)庫中的foo集合進行查找商模,條件是數(shù)據(jù)中有一個屬性叫a蜡励,且a的值為1
MongoDB沒有創(chuàng)建數(shù)據(jù)庫的命令,但有類似的命令阻桅。
如:如果你想創(chuàng)建一個“myTest”的數(shù)據(jù)庫凉倚,先運行use myTest命令,之后就做一些操作(如:db.createCollection('user')),這樣就可以創(chuàng)建一個名叫“myTest”的數(shù)據(jù)庫嫂沉。
數(shù)據(jù)庫常用命令
1稽寒、Help查看命令提示
?help
? db.help();
? db.yourColl.help();
? db.youColl.find().help();
? rs.help();
2、切換/創(chuàng)建數(shù)據(jù)庫
?use yourDB;??當創(chuàng)建一個集合(table)的時候會自動創(chuàng)建當前數(shù)據(jù)庫
3趟章、查詢所有數(shù)據(jù)庫
?show dbs;
4杏糙、刪除當前使用數(shù)據(jù)庫
?db.dropDatabase();
5、從指定主機上克隆數(shù)據(jù)庫
?db.cloneDatabase(“127.0.0.1”); 將指定機器上的數(shù)據(jù)庫的數(shù)據(jù)克隆到當前數(shù)據(jù)庫
6蚓土、從指定的機器上復制指定數(shù)據(jù)庫數(shù)據(jù)到某個數(shù)據(jù)庫
?db.copyDatabase("mydb", "temp", "127.0.0.1");將本機的mydb的數(shù)據(jù)復制到temp數(shù)據(jù)庫中
7宏侍、修復當前數(shù)據(jù)庫
?db.repairDatabase();
8、查看當前使用的數(shù)據(jù)庫
?db.getName();
?db; db和getName方法是一樣的效果蜀漆,都可以查詢當前使用的數(shù)據(jù)庫
9谅河、顯示當前db狀態(tài)
?db.stats();
10、當前db版本
?db.version();
11确丢、查看當前db的鏈接機器地址
?db.getMongo();
Collection聚集集合
1绷耍、創(chuàng)建一個聚集集合(table)
?db.createCollection(“collName”, {size: 20, capped: 5, max: 100});
2、得到指定名稱的聚集集合(table)
?db.getCollection("account");
3鲜侥、得到當前db的所有聚集集合
?db.getCollectionNames();
4褂始、顯示當前db所有聚集索引的狀態(tài)
?db.printCollectionStats();
?用戶相關(guān)
1、添加一個用戶
?db.addUser("name");
?db.addUser("userName", "pwd123", true); 添加用戶描函、設置密碼崎苗、是否只讀
2狐粱、數(shù)據(jù)庫認證、安全模式
?db.auth("userName", "123123");
3胆数、顯示當前所有用戶
?show users;
4肌蜻、刪除用戶
?db.removeUser("userName");
其他
1、查詢之前的錯誤信息
?db.getPrevError();
2幅慌、清除錯誤記錄
?db.resetError();
查看聚集集合基本信息
1宋欺、查看幫助? db.yourColl.help();
2轰豆、查詢當前集合的數(shù)據(jù)條數(shù)? db.yourColl.count();
3胰伍、查看數(shù)據(jù)空間大小 db.userInfo.dataSize();
4、得到當前聚集集合所在的db db.userInfo.getDB();
5酸休、得到當前聚集的狀態(tài) db.userInfo.stats();
6骂租、得到聚集集合總大小 db.userInfo.totalSize();
7、聚集集合儲存空間大小 db.userInfo.storageSize();
8斑司、Shard版本信息? db.userInfo.getShardVersion()
9渗饮、聚集集合重命名 db.userInfo.renameCollection("users"); 將userInfo重命名為users
10、刪除當前聚集集合 db.userInfo.drop();
聚集集合查詢
1宿刮、查詢所有記錄
db.userInfo.find();
相當于:select* from userInfo;
默認每頁顯示20條記錄互站,當顯示不下的情況下,可以用it迭代命令查詢下一頁數(shù)據(jù)僵缺。注意:鍵入it命令不能帶“胡桃;”
但是你可以設置每頁顯示數(shù)據(jù)的大小,用DBQuery.shellBatchSize= 50;這樣每頁就顯示50條記錄了磕潮。
2翠胰、查詢?nèi)サ艉蟮漠斍熬奂现械哪沉械闹貜蛿?shù)據(jù)
db.userInfo.distinct("name");
會過濾掉name中的相同數(shù)據(jù)
相當于: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的數(shù)據(jù)
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數(shù)據(jù)
db.userInfo.find({}, {name: 1, age: 1});
相當于:select name, age from userInfo;
當然name也可以用true或false,當用ture的情況下河name:1效果一樣龟糕,如果用false就是排除name桐磁,顯示name以外的列信息。
12讲岁、查詢指定列name我擂、age數(shù)據(jù), 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的數(shù)據(jù)
db.userInfo.find({name: 'zhangsan', age: 22});
相當于:select * from userInfo where name = ‘zhangsan’ and age = ‘22’;
15校摩、查詢前5條數(shù)據(jù)
db.userInfo.find().limit(5);
相當于:selecttop 5 * from userInfo;
16看峻、查詢10條以后的數(shù)據(jù)
db.userInfo.find().skip(10);
相當于:select * from userInfo where id not in (
selecttop 10 * from userInfo
);
17、查詢在5-10之間的數(shù)據(jù)
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坤塞、查詢第一條數(shù)據(jù)
db.userInfo.findOne();
相當于:selecttop 1 * from userInfo;
db.userInfo.find().limit(1);
20冯勉、查詢某個結(jié)果集的記錄條數(shù)
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摹芙、創(chuàng)建索引
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();
?修改盈电、添加蝴簇、刪除集合數(shù)據(jù)
1、添加
db.users.save({name: ‘zhangsan’, age: 25, sex: true});
添加的數(shù)據(jù)的數(shù)據(jù)列匆帚,沒有固定熬词,根據(jù)添加的數(shù)據(jù)為準
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
});
update或remove其中一個是必須的參數(shù); 其他參數(shù)可選。
參數(shù)詳解默認值
query查詢過濾條件{}
sort如果多個文檔符合查詢過濾條件晤锹,將以該參數(shù)指定的排列方式選擇出排在首位的對象摩幔,該對象將被操作{}
remove若為true,被選中對象將在返回前被刪除N/A
update一個修改器對象N/A
new若為true鞭铆,將返回修改后的對象而不是原始對象或衡。在刪除操作中,該參數(shù)被忽略车遂。false
fields參見Retrieving a Subset of Fields(1.5.0+)All fields
upsert創(chuàng)建新對象若查詢結(jié)果為空封断。示例(1.5.4+)false
語句塊操作
1、簡單Hello World
print("Hello World!");
這種寫法調(diào)用了print函數(shù)舶担,和直接寫入"Hello World!"的效果是一樣的坡疼;
2、將一個對象轉(zhuǎn)換成json
tojson(new Object());
tojson(new Object('a'));
3衣陶、循環(huán)添加數(shù)據(jù)
> for (var i = 0; i < 30; i++) {
... db.users.save({name: "u_" + i, age: 22 + i, sex: i % 2});
... };
這樣就循環(huán)添加了30條數(shù)據(jù)柄瑰,同樣也可以省略括號的寫法
> for (var i = 0; i < 30; i++) db.users.save({name: "u_" + i, age: 22 + i, sex: i % 2});
也是可以的闸氮,當你用db.users.find()查詢的時候,顯示多條數(shù)據(jù)而無法一頁顯示的情況下教沾,可以用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迭代循環(huán)
db.users.find().forEach(printjson);
forEach中必須傳遞一個函數(shù)來處理每條迭代的數(shù)據(jù)信息
6、將find游標當數(shù)組處理
var cursor = db.users.find();
cursor[4];
取得下標索引為4的那條數(shù)據(jù)
既然可以當做數(shù)組處理堪唐,那么就可以獲得它的長度:cursor.length();或者cursor.count();
那樣我們也可以用循環(huán)顯示數(shù)據(jù)
for (var i = 0, len = c.length(); i < len; i++) printjson(c[i]);
7巡语、將find游標轉(zhuǎn)換成數(shù)組
> var arr = db.users.find().toArray();
> printjson(arr[2]);
用toArray方法將其轉(zhuǎn)換為數(shù)組
8、定制我們自己的查詢結(jié)果
只顯示age <= 28的并且只顯示age這列數(shù)據(jù)
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傳遞函數(shù)顯示信息
db.things.find({x:4}).forEach(function(x) {print(tojson(x));});