您好,登錄后才能下訂單哦!
由于習慣了使用關(guān)系型數(shù)據(jù)庫,覺得SQL語句對數(shù)據(jù)進行操作的靈活性不用多說,也很好理解和掌握,但是開始用MongoDB后,在客戶端命令行中對一些數(shù)據(jù)進行操作時總是很別扭,總是提示語法錯誤,盡管RockMongo或MongoVUE等工具 提供了很多便利,但有些操作還是需要命令行操作,于是將在命令行中的數(shù)據(jù)操作命令做了個大概的總結(jié):
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.刪除當前使用的數(shù)據(jù)庫
db.dropDataBase();
5.創(chuàng)建集合(table)
db.createCollection("name",{size:1,capped:5,max:100});
6.查詢
db.table.find() 相當于:select * from table
db.table.distinct("name") 相當于:select distinct name from table;
db.table.find({"age":22}) 相當于:select * from table where age=22;
db.table.find({"age":{$gte:22}}) 相當于 select * from table where age>=22;
db.table.find({"age":{$lt:22}}) 相當于 select * from table where age<22;
db.table.find({"age":22},{"name":1}) 相當于 select name from table where age=22
db.table.find({"age":{$gt:10,$lt:30}}) 相當于 select * from table where age>10 and age<=30
db.table.find({"name":/mary/});相當于 select * from table where name like '%mary%'
7.新增
db.table.save({name:1,age:1}); 相當于insert into table (name,age) values (1,1);
8.修改
db.table.update({age:1},{$set:{name:mary}},false,true) 相當于update table set name=mary where age=1
9.刪除
db.table.remove({age:1}) 相當于 delete from table where age=1
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。