Skip to content

Latest commit

 

History

History
65 lines (32 loc) · 2.06 KB

Assign6.md

File metadata and controls

65 lines (32 loc) · 2.06 KB

Queries with inner joins

In this assignment, you will make queries from shared databases:

  1. Sakila database shared_sakila
  2. Sales database: shared_sales

Write all queries in SQL. Use SHOW TABLES and SHOW CREATE TABLE statements to understand the schema.

The queries may be simple single-table SELECT statements, SELECT statements with subqueries, or queries with inner joins.

Some queries will require ORDER BY and LIMIT clauses but will NOT require aggregation operators such as MAX, AVG, SUM, etc.

The queries will NOT require outer joins or GROUP BY clauses.

Database shared_sakila

  1. List all stores including their full address and their manager names.

  2. List all payments over $11.00, including the payment date, the customer name, and the staff name.

  3. List all customers who have made single payments of $11.00 or more.

Database shared_sales

  1. Display all products and their categories.

  2. Display the product names, number ordered, and total amount for each item on order 160.

  3. Display all customers who have ever ordered a bicycle .

  4. Display the names of products that have never been ordered.

  5. Display the names of customers who have never ordered anything.

  6. Show the customer/employee pairs who share the same last names.

  7. Show the names of all vendors who sell clothing.

  8. Show all products that have not sold since the end of 2017.

  9. Show all product names offered by Texas vendors.

  10. Show the name of the customer who ordered a bicycle most recently.

  11. Show the name of the vendor who sells the most expensive product.

Database shared_world

  1. Show all countries where more than 25% of the population speak Spanish.

Database shared_airport

  1. List all airlines including the names of their home aiport.

  2. List all flights scheduled to depart from the Airport named "LA SARRE".

  3. List all flights that departed from LA SARRE in September 2015.

  4. List the types of airplanes that have have ever departed from LA SARRE.

  5. List the types of airplaes that have never flown.