-
Notifications
You must be signed in to change notification settings - Fork 182
Solution #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Solution #141
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,14 +9,29 @@ CREATE TABLE Countries ( | |
| PRIMARY KEY (ID) | ||
| ); | ||
|
|
||
| CREATE TABLE Warehouse( | ||
| ID INT AUTO_INCREMENT, | ||
| WarehouseName VARCHAR(50), | ||
| WarehouseAddressCity VARCHAR(50), | ||
| WarehouseAddressStreet VARCHAR(50), | ||
| CountriesID INT, | ||
| FOREIGN KEY (CountriesID) REFERENCES Countries(ID) ON DELETE NO ACTION, | ||
| PRIMARY KEY (ID) | ||
| ); | ||
|
|
||
| CREATE TABLE Products( | ||
| ID INT AUTO_INCREMENT, | ||
| ProductName VARCHAR(50), | ||
| PRIMARY KEY (ID) | ||
| ); | ||
|
|
||
| CREATE TABLE ProductInventory ( | ||
| ID INT, | ||
| ProductName VARCHAR(50), | ||
| WarehouseID INT, | ||
| ProductID INT, | ||
| WarehouseAmount INT, | ||
| WarehouseName VARCHAR(50), | ||
| WarehouseAddress VARCHAR(50), | ||
| CountryID INT, | ||
| FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION, | ||
| FOREIGN KEY (ProductID) REFERENCES Products(ID) ON DELETE NO ACTION, | ||
| FOREIGN KEY (WarehouseID) REFERENCES Warehouse(ID) ON DELETE NO ACTION, | ||
| PRIMARY KEY (ID) | ||
| ); | ||
|
OlehHavelia1994 marked this conversation as resolved.
|
||
|
|
||
|
|
@@ -26,8 +41,19 @@ INSERT INTO Countries (ID,Name) | |
| VALUES (1, 'Country1'); | ||
| INSERT INTO Countries (ID,Name) | ||
| VALUES (2, 'Country2'); | ||
|
|
||
| INSERT INTO ProductInventory (ID,ProductName,WarehouseAmount,WarehouseName,WarehouseAddress,CountryID) | ||
| VALUES (1, 'AwersomeProduct', 2, 'Warehouse-1', 'City-1, Street-1',1); | ||
| INSERT INTO ProductInventory (ID,ProductName,WarehouseAmount,WarehouseName,WarehouseAddress,CountryID) | ||
| VALUES (2, 'AwersomeProduct', 5, 'Warehouse-2', 'City-2, Street-2',2); | ||
|
|
||
| INSERT INTO Warehouse (ID, WarehouseName, WarehouseAddressCity, WarehouseAddressStreet, CountriesID) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| VALUES (1, 'Warehouse-1', 'City-1', 'Street-1', 1); | ||
| INSERT INTO Warehouse (ID, WarehouseName, WarehouseAddressCity, WarehouseAddressStreet, CountriesID) | ||
| VALUES (2, 'Warehouse-2', 'City-2', 'Street-2', 2); | ||
|
|
||
| INSERT INTO Products (ID, ProductName) | ||
| VALUES (1, 'AwersomeProduct'); | ||
| INSERT INTO Products (ID, ProductName) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| VALUES (2, 'AwersomeProduct'); | ||
|
|
||
|
|
||
| INSERT INTO ProductInventory (ID, WarehouseID, ProductID, WarehouseAmount) | ||
| VALUES (1, 1, 1, 2); | ||
| INSERT INTO ProductInventory (ID, WarehouseID, ProductID, WarehouseAmount) | ||
| VALUES (2, 2, 2, 5); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This inventory record is for 'AwersomeProduct'. Since there should only be one record for this product in the |
||
Uh oh!
There was an error while loading. Please reload this page.