Answered step by step
Verified Expert Solution
Question
1 Approved Answer
CS 3 4 0 Module Eight Assignment Guidelines and Rubric Overview We will be demonstrating advanced query operations for this assignment. Advanced queries will let
CS Module Eight Assignment Guidelines and Rubric
Overview
We will be demonstrating advanced query operations for this assignment. Advanced queries will let you analyze data in a more programmatic fashion at the database layer. Since the keyvalue structure of an NoSQL database closely resembles the objectoriented data structures of many programming languages, this likeness will enhance the ease and portability of MongoDB queries. The aggregation pipeline facility of MongoDB gives us a set of operators to enable limited set theory operations grouping intersections, and so on for documents within the same collection.
Prompt
After completing the textbook reading and reviewing the module resources, complete the following tasks using the MongoDB shell.
Using the mongoimport tool, create the database companies by loading the documents found in the companiesjson file into the research collection. This file is located in the usrlocaldatasets directory in Apporto. Verify your load by issuing the following queries:
dbresearch.findname : "AdventNet"
dbresearch.findfoundedyear" : name : limit
Provide screenshots of your statements and the results as evidence.
Perform the following tasks using MongoDB queries:
List only the first names of companies founded after the year ordered alphabetically.
List only the first names of companies with offices in either California or Texas, ordered by the number of employees and sorted largest to smallest.
Provide screenshots of your statements and the results as evidence.
Design and implement a MongoDB aggregation pipeline to show the total number of offices by state for all companies that have offices in the United States. Be sure that you account for the fact that some companies have offices in several states. Explain your aggregation pipeline.
Provide screenshots of your statements and the results as evidence.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started