Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHCom committed Feb 8, 2024
1 parent a978aa5 commit 7b9fe05
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions task.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ 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 Product(ID, ProductName)
VALUES (1, 'AwesomeProduct');
INSERT INTO Warehouse (ID,WarehouseName,WarehouseAddress,CountryID)
VALUES (1, 'Warehouse-1', 'City-1, Street-1',1);
INSERT INTO Warehouse (ID,WarehouseName,WarehouseAddress,CountryID)
VALUES (2, 'Warehouse-2', 'City-2, Street-2',2);
INSERT INTO ProductInventory (ID, ProductID, WarehouseID, WarehouseAmount)
VALUES (1, 1, 1, 1);
INSERT INTO ProductInventory (ID, ProductID, WarehouseID, WarehouseAmount)
Expand Down

0 comments on commit 7b9fe05

Please sign in to comment.