成都創(chuàng)新互聯(lián)"三網(wǎng)合一"的企業(yè)建站思路。企業(yè)可建設擁有電腦版、微信版、手機版的企業(yè)網(wǎng)站。實現(xiàn)跨屏營銷,產品發(fā)布一步更新,電腦網(wǎng)絡+移動網(wǎng)絡一網(wǎng)打盡,滿足企業(yè)的營銷需求!成都創(chuàng)新互聯(lián)具備承接各種類型的成都做網(wǎng)站、網(wǎng)站設計項目的能力。經(jīng)過10年的努力的開拓,為不同行業(yè)的企事業(yè)單位提供了優(yōu)質的服務,并獲得了客戶的一致好評。
等價查詢某個數(shù)組:
db.getCollection("test").find( ????{ ????????tags:?["good","book","it","program"]? ????} );
(//連順序都要是存進去的順序,不能變)
查詢數(shù)組里的某一個值:
db.getCollection("test").find( ????{ ????????tags:?"good" ????} );
查詢有四個元素的數(shù)組:
db.getCollection("test").find( ????{ ????????tags:?{$size:?4} ????} );
查詢有或沒有指定字段的,指定字段為null的情況:
db.getCollection("test").insert( ????[ ????????{_id:?2222,?toy:?null}, ????????{_id:?1112} ????] ); db.getCollection("test").find( ????{_id:?2222,?toy:?null} ); db.getCollection("test").find( ????toy:?null );?//報錯 db.getCollection("test").find( ????{_id:?2222,?toy:?{$exists:?true}} );?//找出來了當前這條 db.getCollection("test").find( ????{toy:?{$exists:?true}} );?//找出來了當前這條 db.getCollection("test").find( ????{toy:?{$exists:?false}} );?//找出所有沒有toy這個字段的
查找返回值游標:
db.getCollection("test").find().forEach(function(item)?{ ????print(item.name,?item.price,?item.tags); });
limit,skip方法:
db.getCollection("test").find().limit(1) db.getCollection("test").find().skip(2)
$in的查詢:
db.getCollection("test").find( ????{ ????????_id:?{ ????????????$in:?{12,?objectId("56970120abt538296thg0y6")} ????????} ????} );?//查找_id等于12或objectId("56970120abt538296thg0y6")的文檔記錄
($in 用于不同文檔指定同一個Key 進行或條件匹配, $or 可以指定多個Key 或條件匹配。)
區(qū)間查找:
db.getCollection("test").find( ????{ ????????price:?{$gt:?3,?$lt:?33} ????} );?//查詢價格范圍大于3小子33的值??捎糜谖臋n數(shù)值字段,也可以用于數(shù)組字段