一、MongoDBCompass下载地址
二、MongoDBCompass常用命令
1、模糊查询
匹配
{"plateNumber":{$regex:"京"}}
不匹配
{ "plateNumber": { "$not": { "$regex": "京" } } }
2、或条件
{ "$or" : [{ "num" : "1234"}, { "no" : "2345"}]}
3、in条件
{no:{$in:["1234","2345"]}}
4、大于等于条件
{"start_timestamp" : { "$gte" : "1628068720"}}
5、小于等于条件
{"start_timestamp" : { "$lte" : "1628068720"}}
6、长度条件条件
{no:{ $size:5}}
7、某字段是否存在条件
{ no: { $exists: false } }