332

Suppose the mongodb document(table) 'users' is

{
    _id: 1,
    name: {
        first: 'John',
        last: 'Backus'
    },
    birth: new Date('Dec 03, 1924'),
    death: new Date('Mar 17, 2007'),
    contribs: ['Fortran', 'ALGOL', 'Backus-Naur Form', 'FP'],
    awards: [
        {
            award: 'National Medal',
            year: 1975,
            by: 'NSF'
        },
        {
            award: 'Turing Award',
            year: 1977,
            by: 'ACM'
        }
    ]
}
// ...and other object(person)s

I want to find the person who has the award 'National Medal' and must be awarded in year 1975 There could be other persons who have this award in different years.

How can I find this person using award type and year. So I can get exact person.

Kaspar Lee
  • 5,446
  • 4
  • 31
  • 54
vcxz
  • 4,038
  • 4
  • 18
  • 17

5 Answers5

576

The right way is:

db.users.find({awards: {$elemMatch: {award:'National Medal', year:1975}}})

$elemMatch allows you to match more than one component within the same array element.

Without $elemMatch mongo will look for users with National Medal in some year and some award in the year 1975, but not for users with National Medal in 1975.

See MongoDB $elemMatch Documentation for more info. See Read Operations Documentation for more information about querying documents with arrays.

Leonid Beschastny
  • 50,364
  • 10
  • 118
  • 122
33

Use $elemMatch to find the array of a particular object

db.users.findOne({"_id": id},{awards: {$elemMatch: {award:'Turing Award', year:1977}}})
turivishal
  • 34,368
  • 7
  • 36
  • 59
KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133
  • 1
    passing two objects to findOne, is this essentially a "subquery"? IE, we find the _ID = ID then search inside of that using $elemMatch? – Native Coder Sep 16 '20 at 23:41
16

as explained in above answers Also, to return only one field from the entire array you can use projection into find. and use $

db.getCollection("sizer").find(
  { awards: { $elemMatch: { award: "National Medal", year: 1975 } } },
  { "awards.$": 1, name: 1 }
);

will be return

{
    _id: 1,
    name: {
        first: 'John',
        last: 'Backus'
    },
    awards: [
        {
            award: 'National Medal',
            year: 1975,
            by: 'NSF'
        }
    ]
}
Mohammad Yaser Ahmadi
  • 4,664
  • 3
  • 17
  • 39
11

You can do this in two ways:

  1. ElementMatch - $elemMatch (as explained in above answers)

    db.users.find({ awards: { $elemMatch: {award:'Turing Award', year:1977} } })

  2. Use $and with find

    db.getCollection('users').find({"$and":[{"awards.award":"Turing Award"},{"awards.year":1977}]})

alistair
  • 565
  • 5
  • 15
Joby Wilson Mathews
  • 10,528
  • 6
  • 54
  • 53
0

Use $elemMatch to find the array of a particular object doc: https://www.mongodb.com/docs/manual/reference/operator/query/elemMatch/