Pine Valley Furniture Company Databases SQL
Subject
Programming
Question Description
Use the Pine Valley database to answer each of the questions. Each questionwithin deliverable 2 must begin on a new page and be sure to document the questions the title ofeach item atthe top of each page. Also, using a 12-point font, include the SQL statement and then provide a screen shot of each query. The screen shots must includeboth the SQL statement and theresults for each item below based on the data entered in task 1. The screen shots must be large enough for the instructor to clearly read the results without a magnifying glass!
Caution: Read the instructions carefully! Each question is based on a single SQL statement, and the single SQL statement might contain sub-queries (additional SELECT statements) within the statement.
Provide a list all of the Customer ID, Customer Names, and States and sort the list in alphabetical order by Customer Name.
Provide a list of all of the Customer ID, Customer Names, and States, and sort the list by state with the Customer Names in alphabetical order within each state.
What is the full address of the customer named Kaneohe Homes? That includes the street, city, state, and zip code
Provide a list of the product name, product ID, and unit price for all of the products in the Product table, sorted in alphabetical order by product name
What is the standard price and standard price if increased by 15% for every product?
What is the average standard price for the products with a product finish of natural ash?
Provide a listing of all of the products that includes the difference between its standard price and the overall average standard price of all products.
What is the product name, product ID and price of most expensive product in the product table?
Which orders have been placed since October 20, 2005?
List the product name, standard price, and finish for all tables that cost more than $300 and all desks that cost more than $300.