mongodb入門增刪改查建立索引
來源:互聯網
上載者:User
基本操作命令 show dbs //查看所有的庫 use test //使用庫 沒有的話 自動建立 show collections //查看建立的表 添加 db.test_collection.insert(); //索引值對 json資料 for(i=3;i<100;i++)db.test_collection.insert({_id:i,x:i}) //迴圈添加 尋找 db.test_collection.find(); //尋找所有的欄位 db.test_collection.find({_id:1}) //條件尋找 db.test_collection.find().count(); //統計表資料數量 db.test_collection.find().skip(3).limit(5).sort({_id:1}); //過濾掉前三條,限制5條,按照id排序 更新 db.test_collection.update({x:45},{x:888}); db.test_collection.update({x:100},{$set:{y:888}},{z:100}); //指定欄位修改 db.test_collection.update({y:100},{y:999},true) //如果尋找的資料不存在則將之寫入 多條資料 修改的時候 預設只修改第一條 db.test_collection.update({c:1},{$set:{c:2}},false,true) 防止誤操作只能用set更新 刪除 db.test_collection.remove({c:2}); 刪除表 db.test_collection.drop(); 添加索引 db.test_collection.ensureIndex({x:1}); //單鍵索引 查看索引 db.test_collection.getIndexes(); 多鍵索引 db.test_collection.insert({x:[1,3,4,5]}) 複合索引 db.test_collection .ensureIndex({x:1,y:1}) 到期索引 db.test_collection .ensureIndex({time:1},{expireAfterSeconds:10}), expireAfterSeconds:秒數 全文檢索索引
db.test.find({$text:{$search:"cc"}}) db.test.find({$text:{$search:"aa bb cc"}}) 預設是|| db.test.find({$text:{$search:"aa bb -cc"}}) 不包含cc字串 db.test.find({$text:{$search:"\"aa\" \"bb\" \"cc\""}}) 預設是&&
全文檢索索引相似性查詢 db.test.find({$text:{$search:"cc ss"}},{score:{$meta:"textScore"}}) 分制打分,可以排序 db.test.find({$text:{$search:"cc ss"}},{score:{$meta:"textScore"}}).sort({score:{$meta:"textScore"}}) 詳情請看個人筆記
http://note.youdao.com/noteshare?id=c4c9cb4e6d708ce6e9784146098a1e7a&sub=5AF0A02626B0433B9AB7D9993D1602EA