[MongoDB]學習筆記--基本操作

來源:互聯網
上載者:User

標籤:style   blog   color   使用   io   cti   div   log   

讀取

db.collection.find()

db.users.find(    { age: {$gt: 18}},    {name: 1, address: 1}).limit(5).sort({age:1})

users是collection名字,從users中尋找;

age是query criteria,篩選結果,代表尋找name欄位的值比18大的;

name是projection,篩選列(1代表存在, 0代表不存在),代表返回結果中包含name,address,_id(預設包含欄位)欄位的值;

limit是cursor modifier,代表返回最多5條;

sort是排序,通過age的值進行排序。

註:

1. 所有的查詢只能針對一個單獨的collection;

2. 除非使用sort,否則查詢結果沒有排序;

 

db.collection.findOne() 是返回一個值.

db.collection.find()返回cursor類型。

 

插入

db.collection.insert()

db.users.insert(    {        name:"sue",        age:22,        status:"A"    })

註:

1. 如果insert語句中沒有_id屬性,mongod會自動加一個_id屬性,併產生一個唯一的值,ObjectId.

2. 如果insert語句中帶有_id屬性,必須保證它的值是唯一的,如果重複,會返回異常.

3. update()和save()操作也可以實現插入功能.

 

更新

db.collection.update() or db.collection.save()

db.users.update(    {age:{$gt:18}},                --update criteria    {$set:{status: "A"}},         --update action    {multi:true}                      --update option)

註:

1. 預設情況下,update方法只更新一個document,但是如果設定multi參數為true,可以更新所有符合的documents

2. save方法只能更新一個單一document

 

刪除

db.collection.remove()

db.users.remove(    {status:"D"}        --remove criteria)

註:

1. 預設情況下,remove方法刪除掉合格所有documents

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.