These are queries that use the full Red Cat Database as shown in Figure 3.1. To do these queries you cannot use the SimplifiedSales database. You must use the full Red Cat tables of Customer, Sale, SaleItem, Product, Manufacturer, and Employee tables. For each information request below, formulate a single SQL query to produce the required information. In each case, you should display only the columns requested. Be sure that your queries do not produce duplicate records unless otherwise directed. 1. What are the names of manufacturers of heels costing $50 or more? Only show manufacturer names. 2. List the categories and colors of shoes manufactured by Puma. Sort the results by category then by color. Show only category and color 3. What categories of shoes were have been sold whose SalePrice is over $100. Only show categories. 4. What are the first and last names and postal codes of customers living in California who made purchases in January 2015? (States appear in the database as standard abbreviations, e.g. Alaska appears as “AK”). Show customer first name, last name, and postal code. 5. List the information contained in the SaleItem table concerning the sales of slippers (whose category is slippers). Categories are not capitalized in the database. Note: Your answer should dynamically include all current columns and any future changes to columns.
These are queries that use the full Red Cat
For each information request below, formulate a single SQL query to produce the required information. In each case, you should display only the columns requested. Be sure that your queries do not produce duplicate records unless otherwise directed.
1. What are the names of manufacturers of heels costing $50 or more? Only show manufacturer names.
2. List the categories and colors of shoes manufactured by Puma. Sort the results by category then by color. Show only category and color
3. What categories of shoes were have been sold whose SalePrice is over $100. Only show categories.
4. What are the first and last names and postal codes of customers living in California who made purchases in January 2015? (States appear in the database as standard abbreviations, e.g. Alaska appears as “AK”). Show customer first name, last name, and postal code.
5. List the information contained in the SaleItem table concerning the sales of slippers (whose category is slippers). Categories are not capitalized in the database. Note: Your answer should dynamically include all current columns and any future changes to columns.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps