MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

mongodb - Dokument mit dem nächsten ganzzahligen Wert suchen

Interessantes Problem. Ich weiß nicht, ob Sie es in einer einzigen Abfrage machen können, aber Sie können es in zwei machen:

var x = 1; // given integer
closestBelow = db.test.find({ratio: {$lte: x}}).sort({ratio: -1}).limit(1);
closestAbove = db.test.find({ratio: {$gt: x}}).sort({ratio: 1}).limit(1);

Dann prüfen Sie einfach, welches der beiden Dokumente das ratio hat am nächsten an der Ziel-Ganzzahl.

MongoDB 3.2-Update

Die Version 3.2 fügt Unterstützung für $abs hinzu Absolutwertaggregationsoperator, der dies nun in einem einzigen aggregate ermöglicht Abfrage:

var x = 1;
db.test.aggregate([
    // Project a diff field that's the absolute difference along with the original doc.
    {$project: {diff: {$abs: {$subtract: [x, '$ratio']}}, doc: '$$ROOT'}},
    // Order the docs by diff
    {$sort: {diff: 1}},
    // Take the first one
    {$limit: 1}
])