Mongodb 相關操作

來源:互聯網
上載者:User

標籤:HERE   update   mysq   rgb   等於   oca   break   from   ons   

Shell 命令 和 Mysql 對比

查詢資料

等於:db.col.find({"delete_flag": "N"}).pretty()

小於:db.col.find({"count": {$lt: 10}}).pretty()

小於(lt: less than)

小於等於 (lte: less than or equal)

大於(gt: greater than)

大於等於 (gte: greater than or equal)

where delete_flag = 'N'

where count < 10

更新資料

db.col.update({'phone_number': { $gt : '18800000000' }}, {$set:{'full_name': 'Dake'}},

update test set full_name = 'Dake' where phone_number = '18800000000'

插入資料

db.col.insert({

                      phone_number: '18800000000', 

                      full_name: 'Dake',

                      delete_flag: 'N'

})

insert into test (phone_number, full_name, delete_flag)

values ('18810160000', 'Dake', 'N')

刪除資料

db.col.remove({'phone_number': '18800000000'})

delete from test where phone_number = '18800000000'

在 php 7.0 上的應用

$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");$filter = ['full_name' => ['$eq' => 'Dake']]; // where full_name = 'Dake'$options = [];$query = new MongoDB\Driver\Query($filter, $options);$cursor = $manager->executeQuery('test.col', $query);echo '<pre>';foreach ($cursor as $document){    print_r($document);}

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.