mongodb經常使用命令

1. 超級用戶相關:

1.進入數據庫admin
  use admin

 2.增長或修改用戶密碼
  db.addUser('name','pwd')

 3. #查看用戶列表
  db.system.users.find()

 4. #用戶認證
  db.auth('name','pwd')

 5. #刪除用戶
  db.removeUser('name')

 6. #查看全部用戶
  show users

 7. #查看全部數據庫
  show dbs

 8. #查看全部的collection
  show collections

 9. #查看各collection的狀態
  db.printCollectionStats()

10. #查看主從複製狀態
  db.printReplicationInfo()

11. #修復數據庫
  db.repairDatabase()

12. #設置記錄profiling,0=off 1=slow 2=all
  db.setProfilingLevel(1)

13. #查看profiling
  show profile

14. #拷貝數據庫
  db.copyDatabase('mail_addr','mail_addr_tmp')

15. #刪除collection
  db.mail_addr.drop()

16. #刪除當前的數據庫
  db.dropDatabase()

2. 增刪改

db.test.find({id:10}) 返回test數據集ID=10的數據集
db.test.find({id:10}).count() 返回test數據集ID=10的數據總數
db.test.find({id:10}).limit(2) 返回test數據集ID=10的數據集從第二條開始的數據集
db.test.find({id:10}).skip(8) 返回test數據集ID=10的數據集從0到第八條的數據集
db.test.find({id:10}).limit(2).skip(8) 返回test數據集ID=1=的數據集從第二條到第八條的數據
db.test.find({id:10}).sort() 返回test數據集ID=10的排序數據集
db.test.findOne([query]) 返回符合條件的一條數據
db.test.getDB() 返回此數據集所屬的數據庫名稱
db.test.getIndexes() 返回些數據集的索引信息
db.test.group({key:...,initial:...,reduce:...[,cond:...]})
db.test.mapReduce(mayFunction,reduceFunction,<optional params>)
db.test.remove(query) 在數據集中刪除一條數據
db.test.renameCollection(newName) 重命名些數據集名稱
db.test.save(obj) 往數據集中插入一條數據
db.test.stats() 返回此數據集的狀態
db.test.storageSize() 返回此數據集的存儲大小
db.test.totalIndexSize() 返回此數據集的索引文件大小
db.test.totalSize() 返回些數據集的總大小
db.test.update(query,object[,upsert_bool]) 在此數據集中更新一條數據
db.test.validate() 驗證此數據集
db.test.getShardVersion() 返回數據集共享版本號

三、MongoDB語法與現有關係型數據庫SQL語法比較

MongoDB語法 MySql語法
db.test.find({'name':'foobar'}) <==> select * from test where name='foobar'
db.test.find() <==> select * from test
db.test.find({'ID':10}).count() <==> select count(*) from test where ID=10
db.test.find().skip(10).limit(20) <==> select * from test limit 10,20
db.test.find({'ID':{$in:[25,35,45]}}) <==> select * from test where ID in (25,35,45)
db.test.find().sort({'ID':-1}) <==> select * from test order by ID desc
db.test.distinct('name',{'ID':{$lt:20}}) <==> select distinct(name) from test where ID<20
db.test.group({key:{'name':true},cond:{'name':'foo'},reduce:function(obj,prev){prev.msum+=obj.marks;},initial:{msum:0}}) <==> select name,sum(marks) from test group by name
db.test.find('this.ID<20',{name:1}) <==> select name from test where ID<20
db.test.insert({'name':'foobar','age':25})<==>insert into test ('name','age') values('foobar',25)
db.test.remove({}) <==> delete * from test
db.test.remove({'age':20}) <==> delete test where age=20
db.test.remove({'age':{$lt:20}}) <==> elete test where age<20
db.test.remove({'age':{$lte:20}}) <==> delete test where age<=20
db.test.remove({'age':{$gt:20}}) <==> delete test where age>20
db.test.remove({'age':{$gte:20}}) <==> delete test where age>=20
db.test.remove({'age':{$ne:20}}) <==> delete test where age!=20
db.test.update({'name':'foobar'},{$set:{'age':36}}) <==> update test set age=36 where name='foobar'
db.test.update({'name':'foobar'},{$inc:{'age':3}}) <==> update test set age=age+3 where name='foobar'

4. 索引

1. #增長索引:1(ascending),-1(descending)

 2. db.foo.ensureIndex({firstname: 1, lastname: 1}, {unique: true});

 3. #索引子對象

 4. db.user_addr.ensureIndex({'Al.Em': 1})

 5. #查看索引信息

 6. db.foo.getIndexes()

 7. db.foo.getIndexKeys()

 8. #根據索引名刪除索引

 9. db.user_addr.dropIndex('Al.Em_1')

5. advanced queries:高級查詢

條件操做符 
$gt : > 
$lt : < 
$gte: >= 
$lte: <= 
$ne : !=、<> 
$in : in 
$nin: not in 
$all: all 
$not: 反匹配(1.3.3及以上版本)

查詢 name <> "bruce" and age >= 18 的數據 
db.users.find({name: {$ne: "bruce"}, age: {$gte: 18}});

查詢 creation_date > '2010-01-01' and creation_date <= '2010-12-31' 的數據 
db.users.find({creation_date:{$gt:new Date(2010,0,1), $lte:new Date(2010,11,31)});

查詢 age in (20,22,24,26) 的數據 
db.users.find({age: {$in: [20,22,24,26]}});

查詢 age取模10等於0 的數據 
db.users.find('this.age % 10 == 0'); 
或者 
db.users.find({age : {$mod : [10, 0]}});

匹配全部 
db.users.find({favorite_number : {$all : [6, 8]}}); 
能夠查詢出{name: 'David', age: 26, favorite_number: [ 6, 8, 9 ] } 
能夠不查詢出{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }

查詢不匹配name=B*帶頭的記錄 
db.users.find({name: {$not: /^B.*/}}); 
查詢 age取模10不等於0 的數據 
db.users.find({age : {$not: {$mod : [10, 0]}}});

#返回部分字段 
選擇返回age和_id字段(_id字段老是會被返回) 
db.users.find({}, {age:1}); 
db.users.find({}, {age:3}); 
db.users.find({}, {age:true}); 
db.users.find({ name : "bruce" }, {age:1}); 
0爲false, 非0爲true

選擇返回age、address和_id字段 
db.users.find({ name : "bruce" }, {age:1, address:1});

排除返回age、address和_id字段 
db.users.find({}, {age:0, address:false}); 
db.users.find({ name : "bruce" }, {age:0, address:false});

數組元素個數判斷 
對於{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }記錄 
匹配db.users.find({favorite_number: {$size: 3}}); 
不匹配db.users.find({favorite_number: {$size: 2}});

$exists判斷字段是否存在 
查詢全部存在name字段的記錄 
db.users.find({name: {$exists: true}}); 
查詢全部不存在phone字段的記錄 
db.users.find({phone: {$exists: false}});

$type判斷字段類型 
查詢全部name字段是字符類型的 
db.users.find({name: {$type: 2}}); 
查詢全部age字段是整型的 
db.users.find({age: {$type: 16}});

對於字符字段,能夠使用正則表達式 
查詢以字母b或者B帶頭的全部記錄 
db.users.find({name: /^b.*/i});

$elemMatch(1.3.1及以上版本) 
爲數組的字段中匹配其中某個元素

Javascript查詢和$where查詢 
查詢 age > 18 的記錄,如下查詢都同樣 
db.users.find({age: {$gt: 18}}); 
db.users.find({$where: "this.age > 18"}); 
db.users.find("this.age > 18"); 
f = function() {return this.age > 18} db.users.find(f);

排序sort() 
以年齡升序asc 
db.users.find().sort({age: 1}); 
以年齡降序desc 
db.users.find().sort({age: -1});

限制返回記錄數量limit() 
返回5條記錄 
db.users.find().limit(5); 
返回3條記錄並打印信息 
db.users.find().limit(3).forEach(function(user) {print('my age is ' + user.age)}); 
結果 
my age is 18 
my age is 19 
my age is 20

限制返回記錄的開始點skip() 
從第3條記錄開始,返回5條記錄(limit 3, 5) 
db.users.find().skip(3).limit(5);

查詢記錄條數count() 
db.users.find().count(); 
db.users.find({age:18}).count(); 
如下返回的不是5,而是user表中全部的記錄數量 
db.users.find().skip(10).limit(5).count(); 
若是要返回限制以後的記錄數量,要使用count(true)或者count(非0) 
db.users.find().skip(10).limit(5).count(true);

分組group() 
假設test表只有如下一條數據 
{ domain: "www.mongodb.org" 
, invoked_at: {d:"2009-11-03", t:"17:14:05"} 
, response_time: 0.05 
, http_action: "GET /display/DOCS/Aggregation" 
} 
使用group統計test表11月份的數據count:count(*)、total_time:sum(response_time)、avg_time:total_time/count; 
db.test.group( 
{ cond: {"invoked_at.d": {$gt: "2009-11", $lt: "2009-12"}} 
, key: {http_action: true} 
, initial: {count: 0, total_time:0} 
, reduce: function(doc, out){ out.count++; out.total_time+=doc.response_time } 
, finalize: function(out){ out.avg_time = out.total_time / out.count } 
} );

[ 
{ 
"http_action" : "GET /display/DOCS/Aggregation", 
"count" : 1, 
"total_time" : 0.05, 
"avg_time" : 0.05 
} 
]
相關文章
相關標籤/搜索