sql >> Database teknologi >  >> NoSQL >> MongoDB

Mongodb samlet matchforespørgsel med prioritet på fuld match

Givet dit præcise eksempel, kan dette opnås på følgende måde - hvis dit virkelige scenarie er en smule mere komplekst, kan du dog støde på problemer:

db.accounts.aggregate([{
    $match: {
        "username": /pat/i // find all documents that somehow match "pat" in a case-insensitive fashion
    }
}, {
    $addFields: {
        "exact": { 
            $eq: [ "$username", "pat" ] // add a field that indicates if a document matches exactly
        },
        "startswith": { 
            $eq: [ { $substr: [ "$username", 0, 3 ] }, "pat" ] // add a field that indicates if a document matches at the start
        }

    }
}, {
    $sort: {
        "exact": -1, // sort by our primary temporary field
        "startswith": -1 // sort by our seconday temporary
    }
}, {
    $project: {
        "exact": 0, // get rid of the "exact" field,
        "startswith": 0 // same for "startswith"
    }
}])

En anden måde ville være at bruge $facet hvilket kan vise sig at være en smule mere kraftfuldt ved at aktivere mere komplekse scenarier, men langsommere (flere mennesker her vil dog hade mig for dette forslag):

db.accounts.aggregate([{
    $facet: { // run two pipelines against all documents
        "exact": [{ // this one will capture all exact matches
            $match: {
                "username": "pat"
            }
        }],
        "others": [{ // this one will capture all others
            $match: {
                "username": { $ne: "pat", $regex: /pat/i }
            }
        }]
    }
}, {
    $project: {
        "result": { // merge the two arrays
            $concatArrays: [ "$exact", "$others" ]
        }
    }
}, {
    $unwind: "$result" // flatten the resulting array into separate documents
}, {
    $replaceRoot: { // restore the original document structure
        "newRoot": "$result"
    }
}])



  1. MongoDB $setUnion

  2. Hvordan gemmer jeg en fil i MongoDB?

  3. Forespørger om indlejret listeeksistens i Mongo

  4. Stop Mongoose i at oprette _id-egenskaber for underdokumentarray-elementer