由于習(xí)慣了使用關(guān)系型數(shù)據(jù)庫,覺得SQL語句對數(shù)據(jù)進(jìn)行操作的靈活性不用多說,也很好理解和掌握,但是開始用MongoDB后,在客戶端命令行中對一些數(shù)據(jù)進(jìn)行操作時(shí)總是很別扭,總是提示語法錯誤,盡管RockMongo或MongoVUE等工具 提供了很多便利,但有些操作還是需要命令行操作,于是將在命令行中的數(shù)據(jù)操作命令做了個大概的總結(jié):
堅(jiān)守“ 做人真誠 · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價(jià)值觀,專業(yè)網(wǎng)站建設(shè)服務(wù)10余年為成都成都墻體彩繪小微創(chuàng)業(yè)公司專業(yè)提供企業(yè)網(wǎng)站建設(shè)營銷網(wǎng)站建設(shè)商城網(wǎng)站建設(shè)手機(jī)網(wǎng)站建設(shè)小程序網(wǎng)站建設(shè)網(wǎng)站改版,從內(nèi)容策劃、視覺設(shè)計(jì)、底層架構(gòu)、網(wǎng)頁布局、功能開發(fā)迭代于一體的高端網(wǎng)站建設(shè)服務(wù)。
1.查看命令提示
db.help();
db.collname.help();
db.collname.find().help();
re.help();
2.切換創(chuàng)建數(shù)據(jù)庫
use dbname;
3.查詢所有數(shù)據(jù)庫
show dbs;
4.刪除當(dāng)前使用的數(shù)據(jù)庫
db.dropDataBase();
5.創(chuàng)建集合(table)
db.createCollection("name",{size:1,capped:5,max:100});
6.查詢
db.table.find() 相當(dāng)于:select * from table
db.table.distinct("name") 相當(dāng)于:select distinct name from table;
db.table.find({"age":22}) 相當(dāng)于:select * from table where age=22;
db.table.find({"age":{$gte:22}}) 相當(dāng)于 select * from table where age>=22;
db.table.find({"age":{$lt:22}}) 相當(dāng)于 select * from table where age<22;
db.table.find({"age":22},{"name":1}) 相當(dāng)于 select name from table where age=22
db.table.find({"age":{$gt:10,$lt:30}}) 相當(dāng)于 select * from table where age>10 and age<=30
db.table.find({"name":/mary/});相當(dāng)于 select * from table where name like '%mary%'
7.新增
db.table.save({name:1,age:1}); 相當(dāng)于insert into table (name,age) values (1,1);
8.修改
db.table.update({age:1},{$set:{name:mary}},false,true) 相當(dāng)于update table set name=mary where age=1
9.刪除
db.table.remove({age:1}) 相當(dāng)于 delete from table where age=1