• $size
    • 语法
    • 说明
    • 示例

    $size

    语法

    1. { <字段名>: { $size: 1 } }

    说明

    返回数组或对象Object的元素个数。

    示例

    在集合 foo.bar 插入1条记录:

    1. > db.foo.bar.insert( { "a": [ 1, 2, 3 ] } )

    SequoiaDB shell 运行如下:

    • 作为选择符使用,返回字段“a”数组元素个数:
    1. > db.foo.bar.find( {}, { "a": { "$size": 1 } } )
    2. {
    3. "_id": {
    4. "$oid": "582575dd2b4c38286d000022"
    5. },
    6. "a": 3
    7. }
    8. Return 1 row(s).

    Note:{ $size: 1 } 中1没有特殊含义,仅作为占位符出现。

    • 与匹配符配合使用,匹配字段“a”数组元素个数为3的记录:
    1. > db.foo.bar.find( { "a": { "$size": 1, "$et": 3 } } )
    2. {
    3. "_id": {
    4. "$oid": "582575dd2b4c38286d000022"
    5. },
    6. "a": [
    7. 1,
    8. 2,
    9. 3
    10. ]
    11. }
    12. Return 1 row(s).