ChatGPT解决这个技术问题 Extra ChatGPT

Find duplicate records in MongoDB

How would I find duplicate fields in a mongo collection.

I'd like to check if any of the "name" fields are duplicates.

{
    "name" : "ksqn291",
    "__v" : 0,
    "_id" : ObjectId("540f346c3e7fc1054ffa7086"),
    "channel" : "Sales"
}

Many thanks!

The duplicate flag for this question is undeserved. This question asks how to find duplicate records, not to prevent them.
The irony ha a a

P
Prakash Harvani

Use aggregation on name and get name with count > 1:

db.collection.aggregate([
    {"$group" : { "_id": "$name", "count": { "$sum": 1 } } },
    {"$match": {"_id" :{ "$ne" : null } , "count" : {"$gt": 1} } }, 
    {"$project": {"name" : "$_id", "_id" : 0} }
]);

To sort the results by most to least duplicates:

db.collection.aggregate([
    {"$group" : { "_id": "$name", "count": { "$sum": 1 } } },
    {"$match": {"_id" :{ "$ne" : null } , "count" : {"$gt": 1} } }, 
    {"$sort": {"count" : -1} },
    {"$project": {"name" : "$_id", "_id" : 0} }     
]);

To use with another column name than "name", change "$name" to "$column_name"


"$match": {"_id" :{ "$ne" : null } - is unnecessary here, since the second part of the statement would suffice filtering the result. So only checking for the group having count > 1 will do.
Tks @BatScream. { "$ne" : null } is there just in case 'name' is null or doesn't exist. Aggregation will count null as well.
Welcome. But then why check the _id field. It is always guaranteed to be not null after the group operation.
The _id of a document from a $group stage can be null.
What will be the output of this? If i run i get all the documents what i need is i want only the duplicated id's/names.
B
BatScream

You can find the list of duplicate names using the following aggregate pipeline:

Group all the records having similar name.

Match those groups having records greater than 1.

Then group again to project all the duplicate names as an array.

The Code:

db.collection.aggregate([
{$group:{"_id":"$name","name":{$first:"$name"},"count":{$sum:1}}},
{$match:{"count":{$gt:1}}},
{$project:{"name":1,"_id":0}},
{$group:{"_id":null,"duplicateNames":{$push:"$name"}}},
{$project:{"_id":0,"duplicateNames":1}}
])

o/p:

{ "duplicateNames" : [ "ksqn291", "ksqn29123213Test" ] }

The fact that you explain what each line does makes this answer optimal.
How can I get the duplicate data, based on two fields. Basic example: let say I've collection in which I'm storing social details like: ``` [{username: 'abc', type: 'facebook'}, {username: 'abc', type: 'instagram'}] ``` so In that case I don't want only based on username, but based on both "username & type". thanks :)
J
Juanín

The answer anhic gave can be very inefficient if you have a large database and the attribute name is present only in some of the documents.

To improve efficiency you can add a $match to the aggregation.

db.collection.aggregate(
    {"$match": {"name" :{ "$ne" : null } } }, 
    {"$group" : {"_id": "$name", "count": { "$sum": 1 } } },
    {"$match": {"count" : {"$gt": 1} } }, 
    {"$project": {"name" : "$_id", "_id" : 0} }
)

P
Paul Rumkin
db.getCollection('orders').aggregate([  
    {$group: { 
            _id: {name: "$name"},
            uniqueIds: {$addToSet: "$_id"},
            count: {$sum: 1}
        } 
    },
    {$match: { 
        count: {"$gt": 1}
        }
    }
])

First Group Query the group according to the fields.

Then we check the unique Id and count it, If count is greater then 1 then the field is duplicate in the entire collection so that thing is to be handle by $match query.


haven't been able to make this one work for me too. Down voting!
This post is old but may help some one . check this out I'll check in my local it's working. Even I came across one blog regarding this. Please have a look. compose.com/articles/finding-duplicate-documents-in-mongodb
I was able to get it to work - edited to update to confirmed working version.
M
M. Justin

Another option is to use $sortByCount stage.

db.collection.aggregate([
  { $sortByCount: '$name' }
]

This is the combination of $group & $sort.

The $sortByCount stage is equivalent to the following $group + $sort sequence: { $group: { _id: , count: { $sum: 1 } } }, { $sort: { count: -1 } }


is $name the field name? also how can you change the sorting to sort by count descending? Thanks!
To only get duplicates (as per the question), add a $match stage to the aggregation after the $sortByCount: {$match: {count: {$gt: 1}}}
Y
Yusuf Ganiyu

UPDATE ====== Works everytime!

db.users.aggregate([
    // Group by the key and compute the number of documents that match the key
    {
        $group: {
            _id: "$username",  // or if you want to use multiple fields _id: { a: "$FirstName", b: "$LastName" }
            count: { $sum: 1 }
        }
    },
    // Filter group having more than 1 item, which means that at least 2 documents have the same key
    {
        $match: {
            count: { $gt: 1 }
        }
    }
])

==========

This also aggregation worked for me...

db.collection.aggregate([
    {"$group" : { "_id": "$username", "count": { "$sum": 1 } } },
    {"$match": {"_id" :{ "$ne" : null } , "count" : {"$gt": 1} } }, 
    {"$project": {"username" : "$_id", "_id" : 0} }
]);

You can also try $sortByCount

db.collection.aggregate([
  { $sortByCount: '$username' }
]

A
Andoctorey

In case you need to see all duplicated rows:

db.collection.aggregate([
     {"$group" : { "_id": "$name", "count": { "$sum": 1 },"data": { "$push": "$$ROOT" }}},
     {"$unwind": "$data"}
     {"$match": {"_id" :{ "$ne" : null } , "count" : {"$gt": 1} } }, 
]);

Error: Line 4: Unexpected token {
T
Tanzeel

https://i.stack.imgur.com/7zAiT.png

this is how we can achieve this in mongoDB compass


J
Julesezaar

If somebody is looking for a query for duplicates with an extra "$and" where clause, like "and where someOtherField is true"

The trick is to start with that other $match, because after the grouping you don't have all the data available anymore

// Do a first match before the grouping
{ $match: { "someOtherField": true }},
{ $group: {
    _id: { name: "$name" },
    count: { $sum: 1 }
}},
{ $match: { count: { $gte: 2 } }},

I searched for a very long time to find this notation, hope I can help somebody with the same problem