mongodb的一些基本操作

來源:互聯網
上載者:User

標籤:io   使用   strong   資料   div   sp   cti   on   c   

1.列出所有資料庫>show dbs  2.使用資料庫>use memo  3.列出當前資料庫的collections>show collections  4.顯示當前正在操作的資料>db  5.列出使用者>show users  6.建立資料庫與資料集合>db>show dbs如果是建立就use一個新的資料庫名。如果是修改,就在show dbs的結果集裡面找一個資料庫>use test2>db.createCollection("t_test");這樣就建立好了.>show dbs 查看結果  7.插入資料 方法1:>t={name:"ThisIsName",IP:"192.168.2.2"};>db.t_test.save(t);>db.t_test.find(); 方法2:>db.t_test.insert({name:"ThisIsName2",IP:"192.168.2.3"});>db.t_tset.find();  8.尋找資料尋找指定欄位資料:>db.t_test.find({name:"ThisIsName2"});  9.更新資料>db.t_test.update({name:"User3"},{$set:{IP:"192.168.2.4"}});>db.t_test.find();  10.刪除資料刪除行資料>db.t_test.remove({name:"this is name"});>db.t_test.find();  11.刪除表>show collections此時可以看到本資料庫中的表>db.t_test.drop();刪除成功會返回true  12.刪除資料庫>db.dropDatabase();>show dbs  

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.