Question: How to write SQL query in Acess show each raw material that has a dollar value of $1000 or more. The dollar value of each
How to write SQL query in Acess
show each raw material that has a dollar value of $1000 or more.
The dollar value of each raw material is defined as (footage on hand * unit price).
In the result table, show material ID, material description, and the dollar value of each raw material.
Sort the result by the dollar value in descending order.
the table
Raw_Materials_t
Material_ID Thickness
Size Grade Material_description
Footage_on_hand Unit_price
I wrote this
SELECT Material_ID, Material_description, (SELECT ( Footage_on_hand*Unit_Price ) FROM Raw_Materials_t ) AS dollar_value FROM Raw_Materials_t ORDER BY dollar_value
It was wrong :( I need help in getting this right
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
