💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
>[info] MongoDB 条件操作符 **MongoDB中条件操作符有:** * (>) 大于 - $gt * (<) 小于 - $lt * (>=) 大于等于 - $gte * (<= ) 小于等于 - $lte **示例:** ``` // 获取"col"集合中 "likes" 大于等于 100 的数据 // Select * from col where likes >=100; db.col.find({likes : {$gte : 100}}) // 组合(Select * from col where likes>100 AND likes<200;) db.col.find({likes : {$lt :200, $gt : 100}}) ``` >[info] $type 操作符 $type操作符是基于BSON类型来检索集合中匹配的数据类型,并返回结果。 | **类型** | **数字** | **备注** | | --- | --- | --- | | 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 |   | **示例:** ``` // 如果想获取 "col" 集合中 title 为 String 的数据 db.col.find({"title" : {$type : 2}}) 或 db.col.find({"title" : {$type : 'string'}}) ```