Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Math with SQL- Exercise #3 query sal X + 1 select from retail. Inventory where product_id =21 The Situation: A member of the Merchandising team
Math with SQL- Exercise #3 query sal X + 1 select from retail. Inventory where product_id =21 The Situation: A member of the Merchandising team for Monday Boots is expecting a shipment of additional items for one specific product. She wants to see what percentage of the future inventory level for that product is currently in stock. The current level of inventory is represented in the retail inventory table by the total_en_hand column, while the number of items included in upcoming shipments is represented by the total_n_order column. Combining those two columns would give you the future Inventory level. Task Using the retail. inventory table, pull the current stock percentage out of the future stock level for the product with a product_ld = 21. 10 Want a hint? SOL Viewer + inventory.id product_id created at last updated at total_on_hand total on order 21 2 2016-09-12 00:00:00 2018-02-18 00:00:00 14 Want another hint? You will need to multiply one of the fields in your calculation by 1.00 to allow there to be decimal values in your answer. Try running your query without doing so to see what result you get
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