91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

find詳解

發布時間:2020-07-16 16:41:50 來源:網絡 閱讀:303 作者:梁十八 欄目:關系型數據庫

find詳解

find詳解

find詳解


等價查詢某個數組:

db.getCollection("test").find(
????{
????????tags:?["good","book","it","program"]?
????}
);

(//連順序都要是存進去的順序,不能變)


查詢數組里的某一個值:

db.getCollection("test").find(
????{
????????tags:?"good"
????}
);


查詢有四個元素的數組:

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 或條件匹配。)


區間查找:

db.getCollection("test").find(
????{
????????price:?{$gt:?3,?$lt:?33}
????}
);?//查詢價格范圍大于3小子33的值。可用于文檔數值字段,也可以用于數組字段
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屏东县| 鹿泉市| 安阳县| 山阳县| 西昌市| 武城县| 密山市| 盈江县| 炎陵县| 山西省| 达孜县| 鸡泽县| 海口市| 周至县| 芜湖市| 彭州市| 阿鲁科尔沁旗| 盘锦市| 舞阳县| 册亨县| 清原| 乳源| 静乐县| 怀来县| 阿巴嘎旗| 黄骅市| 林芝县| 日土县| 甘泉县| 六枝特区| 新丰县| 当涂县| 左云县| 玛纳斯县| 犍为县| 黑龙江省| 密云县| 沙洋县| 庄河市| 孟津县| 嵩明县|