mongo查詢語法收藏

2021-06-12 13:18:35 字數 766 閱讀 9771

查詢表示式

含義

mongo

原生查詢條件

neq 

或者ne

不等於$ne lt

小於$lt

lte 

或者elt

小於等於

$lte gt

大於 $

gt gte 

或者egt

大於等於

$gte

like

模糊查詢 用mongoregex正則模擬 無

mod取模運算

$mod in

in查詢

$in

nin或者not in

not  in查詢

$nin

all滿足所有條件

$all

between

在某個的區間 無

not  between

不在某個區間 無

exists

字段是否存在

$exists

size

限制屬性大小

$size

type

限制字段型別

$type

regex

mongoregex

正則查詢

mongoregex實現

exp

使用mongocode查詢 無

mongo查詢語法收藏

查詢表示式 含義 mongo原生查詢條件 neq 或者ne 不等於 ne lt小於 ltlte 或者elt 小於等於 lte gt大於 gt gte 或者egt 大於等於 gte like 模糊查詢 用mongoregex正則模擬 無mod 取模運算 mod inin 查詢 in nin或者not ...

mongo常用查詢

複雜查詢 and or lte,gte,and lt 逗號表示and,lt小於寫在值當中 查詢例項 找到含有指定資料文件 查詢條件spcode有1個字元長度的文件 db.spgoods.find 查詢條件spcode有1 6個字元長度的文件 db.spgoods.find 更新一批資料 db.spg...

mongo常用語法

首先要能進入控制台,進不去自己解決。基本操作 show users 顯示使用者 show dbs 顯示資料庫列表 use 切換 建立資料庫 show collections 顯示當前資料庫中的集合 類似關聯式資料庫中的表 db.help 顯示資料庫操作命令,裡面有很多的命令 db.help db.f...