八、mongodb之元素查询运算符
程序员文章站
2022-05-18 16:37:08
...
元素查询运算符
符号 | 含义 |
---|---|
$exists | 返回field存在的 |
$type | 返回指定类型的 |
案例:
db.inventory.find( { qty: { $exists: true, $nin: [ 5, 15 ] } } )
db.records.find( { a: { $exists: true } } )
db.addressBook.find( { "zipCode" : { $type : 2 } } );
db.addressBook.find( { "zipCode" : { $type : "string" } } );
db.addressBook.find( { "zipCode" : { $type : 1 } } )
db.addressBook.find( { "zipCode" : { $type : "double" } } )
上一篇: Ubuntu18.0下javafx11+程序无法输入中文的解决方案
下一篇: python运算符