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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:07:57+00:00 2026-06-10T13:07:57+00:00

I am trying to do something that I think is quite simple. Suppose I

  • 0

I am trying to do something that I think is quite simple. Suppose I have a series of records in mongo that have a common key, and variable number of attributes. I want to select all attributes and group by name across the records. For example

{ Name: George, x: 5, y: 3 }
{ Name: George, z: 9 }
{ Name: Rob, x: 12, y: 2 }

I would like to produce a CSV that looks like this:

Name     X   Y   Z
George   5   3   9
Rob      12  2

Tried

DB.data.aggregate({ $group : { _id : "$Name" } })

Unfortunately I get back all the names as records but not the union of all the possible attributes.

  • 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-10T13:07:58+00:00Added an answer on June 10, 2026 at 1:07 pm

    If you want to combine the attributes, you’ll need to add those to the group. For example, using $addToSet to find the unique values of the x,y,z attributes grouped by each name:

    db.data.aggregate(
        { $group : {
                _id : "$Name",
                x: { $addToSet: "$x" },
                y: { $addToSet: "$y" },
                z: { $addToSet: "$z" },
        }}
    )
    

    Returns:

    {
        "result" : [
            {
                "_id" : "Rob",
                "x" : [
                    12
                ],
                "y" : [
                    2
                ],
                "z" : [ ]
            },
            {
                "_id" : "George",
                "x" : [
                    5
                ],
                "y" : [
                    3
                ],
                "z" : [
                    9
                ]
            }
        ],
        "ok" : 1
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to do something that i would think to be rather simple. I
I'm trying to do something that I thought would be quite simple but as
I'm trying to find a way to to do something that I think must
I'm trying to do something that would be really simple in any other language
I'm trying to create something that works like this but doesn't have any submenus.
I'm trying to do something that I thought ought to be reasonably simple but
I'm quite new to node and am trying to create something that gets some
I have a very odd issue trying to run this quite simple C program
I have read around quite a bit now and think that the following is
I am trying to do something quite simple using Sinatra and RMagick . Take

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.