Giter VIP home page Giter VIP logo

dsc-one-to-many-and-many-to-many-joins-lab's Introduction

One-to-Many and Many-to-Many Joins - Lab

Introduction

In this lab, you'll practice your knowledge of one-to-many and many-to-many relationships!

Objectives

You will be able to:

  • Explain one-to-many and many-to-many joins as well as implications for the size of query results
  • Query data using one-to-many and many-to-many joins

One-to-Many and Many-to-Many Joins

Connect to the Database

Include the relevant imports, then connect to the database located at data.sqlite.

# Your code here

Employees and Their Offices (a One-to-One Join)

Select all of the employees including their first name and last name along with the city and state of the office that they work out of (if they have one). Include all employees and order them by their first name, then their last name.

# Your code here

Customers and Their Orders (a One-to-Many Join)

Select all of the customer contacts (first and last names) along with details for each of the customers' order numbers, order dates, and statuses.

# Your code here

Customers and Their Payments (Another One-to-Many Join)

Select all of the customer contacts (first and last names) along with details for each of the customers' payment amounts and date of payment. Sort these results in descending order by the payment amount.

# Your code here

Orders, Order Details, and Product Details (a Many-to-Many Join)

Select all of the customer contacts (first and last names) along with the product names, quantities, and date ordered for each of the customers and each of their orders. Sort these in descending order by the order date.

Note: This will require joining 4 tables! This can be tricky! Give it a shot, and if you're still stuck, turn to the next section where you'll see how to write subqueries that can make complex queries such as this much simpler!

# Your code here

Summary

In this lab, you practiced your knowledge of one-to-many and many-to-many relationships!

dsc-one-to-many-and-many-to-many-joins-lab's People

Contributors

alexgriff avatar cheffrey2000 avatar hoffm386 avatar loredirick avatar mas16 avatar mathymitchell avatar peterbell avatar sproulhimself avatar sumedh10 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dsc-one-to-many-and-many-to-many-joins-lab's Issues

technicality - customers don't have first & last names

Directions are:

Return a dataframe with all of the customers' first and last names along with details for each of their order numbers, order dates, and statuses.

but the customers are businesses and only have customerName - it is the customer contact which has first and last names.

Directions should be something like:

Return a dataframe with all of the customer contacts (first and last name) along with details for each of the customers' order numbers, order dates, and statuses.

Similarly for all of the directions below.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.