简体   繁体   中英

String field value length in array in mongoDB

How can I get the length of characters from a field that is nested in another field? and it is in an array. eg:

{
    "_id" : ObjectId("687e1db"),
    "content" : {
        "ods" : "1102223000241",
        "startDate" : ISODate("2017-05-11T12:00:00Z"),
        "classes" : [
            {
              "driveNumber" : "9999078900007091",
              "number" : "00107605829357",
              "sId" : "0000000005009593"
            }
        ],
         "user" : "SoftLogic",
    },
    "level" : 2
}

and I want to get a sample in the content.classes.number , where there are more than 16 characters in the field.

when making a request I was guided by String field value length in mongoDB

Either this request is not suitable for this situation, or I am doing something wrong.

db.Basis.find({
    "content.classes.number": { "$exists": true }, 
    "$expr": { "$gt": [ { "$strLenCP": "$content.classes.number" }, 16 ] }})

I get the error: https://gyazo.com/d2849406d36364de94d6ea89eff1c2b6

I tried not only such options.

UPD mongo version 3.4.3

content.classes.number is an array field not a string and that's why your query could not work.

One solution here is to use $arrayElemAt operator but don't know which element you want to check with. But for instance, I am taking the 0th element here.

db.Basis.find({
  "content.classes.number": { "$exists": true }, 
  "$expr": { "$gt": [{ "$strLenCP": { "$arrayElemAt": ["$content.classes.number", 0] }}, 16 ] }
})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM