2
Laravel Jessangerで次のmongoDBクエリを使用しようとしていますが、raw
クエリとして実行できませんでした。mongoDB Jenssegers Laravelを使用して未処理クエリを実行
db.getCollection('users').aggregate([
{
"$group": {
"_id": { "cnic": "$cnic", "time_in": "$time_in" },
"uniqueIds": { "$addToSet": "$_id" },
"count": { "$sum": 1 }
}
},
{ "$match": { "count": { "$gt": 1 } } }
]).forEach(function(doc) {
doc.uniqueIds.shift();
db.getCollection('users').remove({_id : {$in: doc.uniqueIds }});
})
この単純なクエリをそのまま実行して、データベースから重複を削除します。
は、私は次のように使用してみました:
私はあなたの問題を抱えています、あなたはそれを解決しましたか? –