Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9038901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T09:36:09+00:00 2026-06-16T09:36:09+00:00

Suppose the mongodb document(table) ‘users’ is { _id: 1, name: { first: ‘John’, last:

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T09:36:10+00:00Added an answer on June 16, 2026 at 9:36 am

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have some objects in MongoDB: { _id:xxx, name:mike, children: [ {name:A, age:3},
Suppose I have a collection in my mongoDB: db.co and only have one document:
Suppose I create a document in a MongoDB collection with the following structure and
Suppose we have the name written in any none-latin letters - languages, like Arabic,
Suppose I have a mongodb collections A and B. While A has a foreign
I'm new to jasmine, and I want to write some tests for mongodb operations.
I'm building a Hacker-News or Reddit style social news site with MongoDB. Let's suppose
Good day everyone. Suppose we have a collection and a document which looks something
Suppose I have two collections/schemas. One is the Users Schema with username and password
I have mongodb base with users and passwords. I have a jsp file with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.