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 7492737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T16:32:12+00:00 2026-05-29T16:32:12+00:00

If I have the following 3 documents. How can I select the documents that

  • 0

If I have the following 3 documents. How can I select the documents that have at least two purple squares. In this case it would only be the last element.

I know I can select documents with any purple squares with db.foo.find({foo: {"$elemMatch": {shape: "square", color: "purple"}}})

But is there a way to say it must match a certain number of times?

// Document 1
{ "foo" : [
      {
        "shape" : "square",
        "color" : "purple",
        "thick" : false
      },
      {
        "shape" : "circle",
        "color" : "red",
        "thick" : true
      }
] }


// Document 2
{ "foo" : [
      {
        "shape" : "square",
        "color" : "red",
        "thick" : true
      },
      {
        "shape" : "circle",
        "color" : "purple",
        "thick" : false
      }
] }

// Document 3
{ "foo" : [
      {
        "shape" : "square",
        "color" : "purple",
        "thick" : false
      },
      {
        "shape" : "square",
        "color" : "purple",
        "thick" : true
      }
] }

This example is adapted from the last sample here: http://www.mongodb.org/display/DOCS/Dot+Notation+%28Reaching+into+Objects%29

  • 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-05-29T16:32:14+00:00Added an answer on May 29, 2026 at 4:32 pm

    This could be accomplished by using $where, MapReduce, or your application could increment a count of interesting objects when inserted/updated (e.g. db.foo.insert({foo:[{...}, {...}, ...], purpleSquareCount:2});).

    The simplest solution is likely to use $where (note the performance implications):

    hasPurpleSquares = function () {
        var count = 0;
        this.foo.forEach(function (obj) {
             if (obj.shape == "square" && obj.color == "purple") { 
                  count = count + 1;
             }
        });
        if (count >= 2) {
            return true;
        }
    }
    
    db.foo.find({$where:hasPurpleSquares});
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following node /html[1]/body[1]/div[1]/div[1]/div[3]/div[1]/div[7]/p[1]/#text[1] How can I figure out that the last
I have the following XML Document (that can be redesigned if necessary) that stores
I have two documents with a simple schema that I need to compare: current
Good day, If I have for example the documents which have the following fields
I have text documents like the following which contain single and multiple variables: title::
Never ran into this problem with jQuery before. I have the following: $(document).ready(function() {
I have the following code: $(document).ready(function(){ $(.yearInner).hide(); $(.year, this).hover( function () { $(.yearInner, this).slideToggle();
I have 2 tables (Document and DocumentClass) that have the following columns: DocumentClass: DocClassID,
I have some HTML that looks like this: <div class=MyClass></div> <div class=MyClass></div> <div class=MyClass></div>
I have the following code $(document).ready(function() { // When change the value in select

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.