sql >> Databasteknik >  >> NoSQL >> MongoDB

MongoDB i PHP som använder aggregat för att gruppera efter _id fungerar inte null

Använd MongoRegex objekt:

$search = "apc";
$where = array('Store.Title' => array('$regex' => new MongoRegex("/^$search/gi")));
// $where = array('Store.Title' => array('$regex' => new MongoRegex("/".$search."/gi")));

[
    [ '$match' => $where ],
    [
        '$group' => [
            '_id' => 'null',
            'count' => [ '$sum' => 1 ]
        ]
    ]
]



  1. MongoDB $count Aggregation Operator

  2. MongoDB dataintegritet

  3. Mongorestore genom stdin till db med annat namn

  4. Mongoose-gruppfråga i node.js / express route