認識MongoDB

來源:互聯網
上載者:User

標籤:必須   data   doc   圖片   import   object   ODB   option   通過   

進入MongoDB:mongo

退出MongoDB:exit

顯示所有庫: show dbs

切換資料庫: use 資料庫名稱

查看所在庫: db

刪除庫:db.dropDatabase()

查看當前資料庫的集合: show collections

集合建立: db.createCollection(name, options)集合名必須加引號

刪除集合:db.集合名稱.drop()

插入資料:db.集合名稱.insert(document)  #插入文檔時,如果不指定_id參數,MongoDB會為文檔分配一個唯一的ObjectId

插入單條:db.集合名稱.insert({name:‘張三‘,age:18})

插入多條:db.集合名稱.insert([ {name:‘王五‘,sex:‘male‘,age:18}, {name:‘張三‘,sex:’female‘,age:30 }, {name:‘李四‘,sex:’male‘,age:48 }])

查詢資料:db.集合名稱.find() #查詢所有

美觀查詢:db.集合名稱.find().pretty()

更新資料:db.集合名稱.update((條件),<update>) #單條更新

多條更新:db.集合名稱.update((條件),<update>, {multi: true})

指定屬性更新,通過操作符$set:db.集合名稱.update((條件),{$set:<update>}) 

刪除資料:db.集合名稱. remove((條件))  #預設刪除所有

刪除單條:db.集合名稱. remove((條件),{justOne:true})

 

python操作MongoDB

安裝python包:pip install pymongo

引入包pymongo:import pymongo

建立串連並建立用戶端: client= pymongo.MongoClient(主機名稱,連接埠)    #本機(‘127.0.0.1‘, 27017)

指定資料庫:db=client[ 資料庫名 ]

指定集合:col=db [ 集合名]

常用方法:

 

認識MongoDB

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.