sql >> Databasteknik >  >> NoSQL >> MongoDB

Hur kan jag kontrollera om ett fält finns eller inte i MongoDB?

Du kan använda $exists operatorn i kombination med . notation. Den blotta frågan i mongo-skalet ska se ut så här:

db.yourcollection.find({ 'otherInfo.text' : { '$exists' : true }})

Och ett testfall i Java kan se ut så här:

    BasicDBObject dbo = new BasicDBObject();
    dbo.put("name", "first");
    collection.insert(dbo);

    dbo.put("_id", null);
    dbo.put("name", "second");
    dbo.put("otherInfo", new BasicDBObject("text", "sometext"));
    collection.insert(dbo);

    DBObject query = new BasicDBObject("otherInfo.text", new BasicDBObject("$exists", true));
    DBCursor result = collection.find(query);
    System.out.println(result.size());
    System.out.println(result.iterator().next());

Utdata:

1
{ "_id" : { "$oid" : "4f809e72764d280cf6ee6099"} , "name" : "second" , "otherInfo" : { "text" : "sometext"}}


  1. Redis statistik

  2. mongodb 3.4.3 Tillstånd nekad widtiger_kv_engine.cpp 267 fel med ubuntu 16

  3. MongoDB Composite Key

  4. Åldras automatiskt MongoDB Collection Documents