Question
Employee_t Employee_ID EmployeeFirstName EmployeeLastName EmployeeJobTitle ManagerID SALES_REPRESENTATIVE_t EmployeeID(Fk) ComissionRate COURSE_t CourseID(PK) CourseDescription EMPLOYEE_COURSE_t EmployeeID(FK) CourseID(FK) CompletionDate PRODUCT_t ProductID(PK) ProductDescription StockQuantity PRICE_HISTORY_t ProductID(FK) StartDate(PK) DueDate UnitPrice
Employee_t
Employee_ID
EmployeeFirstName
EmployeeLastName
EmployeeJobTitle
ManagerID
SALES_REPRESENTATIVE_t
EmployeeID(Fk)
ComissionRate
COURSE_t
CourseID(PK)
CourseDescription
EMPLOYEE_COURSE_t
EmployeeID(FK)
CourseID(FK)
CompletionDate
PRODUCT_t
ProductID(PK)
ProductDescription
StockQuantity
PRICE_HISTORY_t
ProductID(FK)
StartDate(PK)
DueDate
UnitPrice
FABRITCATED_T
PartID(PK)
ProductID(FK)
PartQuantity
Product_Supplier_t
ProductID(FK)
SupplierID(FK)
VendorPartID
ProductCost
PurchasedQuantity
Supplier_t
SupplierID(PK)
SUpplierName
CUSTOMER_t
CustomerID (PK)
CustomerName
CustomerStreet
CUstomerState
SalesRepID
ORDER_t
OrderID(PK)
CustomerPONumber
OrderDate
DueDate
ShipDate
CustomerID(PK)
ORDER_LINE_t
OrderID(FK)
ProductID(FK)
OrderQuantity
1A)List the ProductIDs, product descriptions, and unit prices that are valid on July 14, 2015 for all
products sorted by ProductID. 1B)List the suppliers that provide hack saws, and sort the list with the lowest prices first. Hint: Your SQL statement must look for a Hack Saw, and not some ProductID or PartID. Include the Supplier IDs, Supplier Names, Vendor Part #s, and cost. 1C). Provide an inventory report that lists the most costly items first. Hint: The most costly item is the one in which the product (i.e., multiplication) of cost and quantity yields the largest value, in other words, the item that we have spent the most money on. Include Product ID, Product Description, Unit Price, Cost, Quantity Purchased, Amount Spent (the product of Quantity Purchased and Cost), Supplier ID, and Supplier Name.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started