MongoDB $type 操作符_MongoDB

來源:互聯網
上載者:User
描述

在本章節中,我們將繼續討論MongoDB中條件操作符 $type。

$type操作符是基於BSON類型來檢索集合中匹配的資料類型,並返回結果。

MongoDB 中可以使用的類型如下表所示: 類型 數字 備忘 Double 1   String 2   Object 3   Array 4   Binary data 5   Undefined 6 已廢棄。 Object id 7   Boolean 8   Date 9   Null 10   Regular Expression 11   JavaScript 13   Symbol 14   JavaScript (with scope) 15   32-bit integer 16   Timestamp 17   64-bit integer 18   Min key 255 Query with -1. Max key 127  

我們使用的資料庫名稱為"runoob" 我們的集合名稱為"col",以下為我們插入的資料。

簡單的集合"col":

>db.col.insert({    title: 'PHP 教程',     description: 'PHP 是一種建立動態互動性網站的強有力的伺服器端指令碼語言。',    by: '菜鳥教程',    url: 'http://www.runoob.com',    tags: ['php'],    likes: 200})

>db.col.insert({title: 'Java 教程',     description: 'Java 是由Sun Microsystems公司於1995年5月推出的進階程式設計語言。',    by: '菜鳥教程',    url: 'http://www.runoob.com',    tags: ['java'],    likes: 150})

>db.col.insert({title: 'MongoDB 教程',     description: 'MongoDB 是一個 Nosql 資料庫',    by: '菜鳥教程',    url: 'http://www.runoob.com',    tags: ['mongodb'],    likes: 100})

使用find()命令查看資料:

> db.col.find(){ "_id" : ObjectId("56066542ade2f21f36b0313a"), "title" : "PHP 教程", "description" : "PHP 是一種建立動態互動性網站的強有力的伺服器端指令碼語言。", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "php" ], "likes" : 200 }{ "_id" : ObjectId("56066549ade2f21f36b0313b"), "title" : "Java 教程", "description" : "Java 是由Sun Microsystems公司於1995年5月推出的進階程式設計語言。", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "java" ], "likes" : 150 }{ "_id" : ObjectId("5606654fade2f21f36b0313c"), "title" : "MongoDB 教程", "description" : "MongoDB 是一個 Nosql 資料庫", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "mongodb" ], "likes" : 100 }

MongoDB 操作符 - $type 執行個體

如果想擷取 "col" 集合中 title 為 String 的資料,你可以使用以下命令:

db.col.find({"title" : {$type : 2}})

輸出結果為:

{ "_id" : ObjectId("56066542ade2f21f36b0313a"), "title" : "PHP 教程", "description" : "PHP 是一種建立動態互動性網站的強有力的伺服器端指令碼語言。", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "php" ], "likes" : 200 }{ "_id" : ObjectId("56066549ade2f21f36b0313b"), "title" : "Java 教程", "description" : "Java 是由Sun Microsystems公司於1995年5月推出的進階程式設計語言。", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "java" ], "likes" : 150 }{ "_id" : ObjectId("5606654fade2f21f36b0313c"), "title" : "MongoDB 教程", "description" : "MongoDB 是一個 Nosql 資料庫", "by" : "菜鳥教程", "url" : "http://www.runoob.com", "tags" : [ "mongodb" ], "likes" : 100 }
相關文章

聯繫我們

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