Git Product home page Git Product logo

dsc-join-statements-lab-dc-ds-111819's Introduction

Join Statements - Lab

Introduction

In this lab, you'll practice your knowledge of JOIN statements, using various types of joins and various methods for specifying the links between them.

Objectives

You will be able to:

  • Write SQL queries that make use of various types of joins
  • Compare and contrast the various types of joins
  • Discuss how primary and foreign keys are used in SQL
  • Decide and perform whichever type of join is best for retrieving desired data

CRM ERD

In this lab, you'll use the same customer relationship management (CRM) database that you saw from the previous lesson.

Connecting to the Database

Import the necessary packages and connect to the database 'data.sqlite'.

# Your code here

Select the names of all employees in Boston

Hint: join the employees and offices tables. Select the first and last name.

# Your code here

Are there any offices that have zero employees?

Hint: Combine the employees and offices tables and use a group by. Select the office code, city, and number of employees.

# Your code here

Write 3 questions of your own and answer them

# Answers will vary

# Example question: 
"""
How many customers are there per office?
"""
"""
Question 1
"""

# Your code here
"""
Question 2
"""

# Your code here
"""
Question 3
"""

# Your code here

Level Up 1: Display the names of every individual product that each employee has sold

Hint: You will need to use multiple JOIN clauses to connect all the way from employee names to product names.

# Your code here

Level Up 2: Display the number of products each employee has sold

Alphabetize the results by employee last name.

Hint: Use the quantityOrdered column from orderDetails. Also, think about how to group the data when some employees might have the same first or last name.

# Your code here

Level Up 3: Display the names employees who have sold more than 200 different products

Hint: this is different from the previous question because the quantity sold doesn't matter, only the number of different products

# Your code here

Summary

Congrats! You practiced using join statements and leveraged your foreign keys knowledge!

dsc-join-statements-lab-dc-ds-111819's People

Contributors

loredirick avatar mathymitchell avatar mas16 avatar sumedh10 avatar sproulhimself avatar fpolchow avatar hoffm386 avatar

Watchers

James Cloos avatar  avatar Mohawk Greene avatar Victoria Thevenot avatar Bernard Mordan avatar Otha avatar raza jafri avatar  avatar Joe Cardarelli avatar The Learn Team avatar Sophie DeBenedetto avatar  avatar  avatar Matt avatar Antoin avatar  avatar Alex Griffith avatar  avatar Amanda D'Avria avatar  avatar Ahmed avatar Nicole Kroese  avatar Kaeland Chatman avatar Lisa Jiang avatar Vicki Aubin avatar Maxwell Benton avatar  avatar

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.