Write an SQL query to report, How much cubic feet of volume does the inventory occupy in each warehouse.
warehouse_name
volume
Return the result table in any order.
The query result format is in the following example.
ac
+--------------+---------+
| Column Name | Type |
+--------------+---------+
| name | varchar |
| product\_id | int |
| units | int |
+--------------+---------+
(name, product\_id) is the primary key for this table.
Each row of this table contains the information of the products in each warehouse.
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| product\_id | int |
| product\_name | varchar |
| Width | int |
| Length | int |
| Height | int |
+---------------+---------+
product\_id is the primary key for this table.
Each row of this table contains the information about the product dimensions (Width, Lenght and Height) in feets of each product.