Question: Write an SQL statement to produce a single column called ItemLoactaion that combines the SKU_Description, the phrase is located in, and WarehouseCity. The answer I
Write an SQL statement to produce a single column called ItemLoactaion that combines the SKU_Description, the phrase is located in, and WarehouseCity.
The answer I came up with is:
SELECT SKU_Description + 'is located in' + WarehouseCity AS ITEM_Location FROM INVENTORY, WAREHOUSE WHERE INVENTORY.WarehouseID=WAREHOUSE.WarehouseID;
But the results are returning just 0. Please help/ Thank you.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
