Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

SQL Query on Multiple TablesJOIN 1. Display employee number, first name, middle name, last name and the job description for all the employees. The order

SQL Query on Multiple TablesJOIN

1. Display employee number, first name, middle name, last name and the job description for all the employees. The order of columns for the display must be the same as it is provided in the previous sentence. You will join MSC_employee and MSC_job tables.

2. Write and execute a SELECT statement that will return the customers name, city, salesmans number assigned to customer, and the assigned salesmans last name for customers located in the state of New York.

3. Display data from the MSC_Product_detail table by performing a Three Table Join with the MSC_Product_detail, MSC_Product_master and MSC_Vendor tables. The SELECT statement will display product number, product description, sale price, vendor name and quantity in stock and only for product details that have quantity in stock less than 400. In addition, the result needs to be sorted by ascending value of quantity in stock.

4. Write a select statement that will display customer number, customer name and the number of orders belong to the customer whose state is Pennsylvania.. You will need to join two tables, use a COUNT aggregate and a GROUP BY clause in your SELECT statement. Override labels with a more descriptive but brief label.

5. Create and execute a SELECT statement that would provide data for a vendor directory. Display should include vendor number, vendor name, street, city, state, zip code. Concatenate the address elements to look like 1234 Main Street State College, PA 16802. Override the column labels with meaningful descriptions. Display directory by state (ascending).image text in transcribed

MSC Employee MSC job empl_number ob_code empl_ first name job_description emplm iddle_name empl_middle_name ob_code MSC Customer MSC_Order MSC Order_detail cust num ber ord_number PK FK ord_num ber cust name ne_number prod_number ord quantity FK cust _num ber PK cust st reet ord entrydate FK ord status cust city cust st ate cust zip ship_ quant ity MSC Product_Master ship_date PK prod_number sa lesman_ number prod description MSC Product detail sale_price FK prod_number MSC_Vender m ission_percen FK vend_number PK vend number qty_in_stock vend_name vend _street vend city vend state vend zip

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Datalog Engines In Databases

Authors: Bas Ketsman ,Paraschos Koutris

1st Edition

1638280428, 978-1638280422

More Books

Students also viewed these Databases questions