最近在學習MongoDB勾哩,整理梳理一下各種命令,怕以后忘記谭溉,以后可以自己查閱喘鸟!
常用的方法:
-h arg 主機
--port arg 端口
-u arg 用戶名
-p arg 密碼
-d arg 數(shù)據(jù)庫
-c arg 集合
-f arg 字段名 逗號隔開
-q arg 查詢條件 json格式
--csv 導出csv格式
-o arg 導出的文件名
示例:
mongoexport -u dotcoo -p 123456 -d dotcoo -c user -q {gender:2} -f username,nickname --csv -o girl.csv
文件導出至JSON:
mongoexport -d <數(shù)據(jù)庫名稱> -c <Collection名稱> -o <文件名稱>
# -d表示數(shù)據(jù)庫的名稱
# -c數(shù)據(jù)庫里面的表格
# xiaozhu_fangzi.json 文件名稱
文件導出至CSV:
mongoexport -d <數(shù)據(jù)庫名稱> -c <Collection名稱> --csv -f <字段名稱> -o <文件名稱>
# 其中-f 后面填的就是Excel表頭,要和collections里面的表頭對應最盅;
# 但是我Mac會有一個問題突雪,就是Excel打開導出后的CSV中文亂碼;
# 用Numbers打開正常涡贱,想Excel能用就重新導出的時候選下編碼即可咏删;
# OFFICE在OS X里面就是一垃圾
Terminal 下創(chuàng)建數(shù)據(jù)庫:
MongoDB沒有創(chuàng)建數(shù)據(jù)庫的命令,但有類似的命令问词。
如:如果你想創(chuàng)建一個“myTest”的數(shù)據(jù)庫饵婆,先運行use myTest命令。
之后就做一些操作 如:db.createCollection('user'),這樣就可以創(chuàng)建一個名叫“myTest”戏售,集合為"user"的數(shù)據(jù)庫侨核。
Json格式導入MongoDB數(shù)據(jù)庫:
mongoimport -d <數(shù)據(jù)庫名稱> -c <Collection名稱> --file <文件地址>
CSV格式導入MongoDB數(shù)據(jù)庫:
mongoimport -d <數(shù)據(jù)庫名稱> -c <Collection名稱> --type csv --headerline --file <文件地址>
# headerline 就是忽略csv最上行的表頭,只導入數(shù)據(jù)
備份數(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();
用戶相關
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差凹、查詢某個結果集的記錄條數(shù)
db.userInfo.find({age: {$gte: 25}}).count();
相當于:select count(*) from userInfo where age >= 20;
如果要返回限制之后的記錄數(shù)量期奔,要使用count(true)或者count(非0)
db.users.find().skip(10).limit(5).count(true);
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.collection.update(criteria, objNew, upsert, multi )
criteria:update的查詢條件挖胃,類似sql update查詢內(nèi)where后面的
objNew:update的對象和一些更新的操作符(如$,$inc...)等杂靶,也可以理解為sql update查詢內(nèi)set后面的梆惯。
upsert : 如果不存在update的記錄,是否插入objNew,true為插入吗垮,默認是false垛吗,不插入。
multi : mongodb默認是false,只更新找到的第一條記錄烁登,如果這個參數(shù)為true,就把按條件查出來多條記錄全部更新怯屉。
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
});