1571. Warehouse Manager
Description
+--------------+---------+
| 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.ac
Last updated