Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 34 additions & 9 deletions task.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,29 @@ CREATE TABLE Countries (
PRIMARY KEY (ID)
);

CREATE TABLE Addresses(
ID INT,
Street VARCHAR(50),
City VARCHAR(50),
CountryID INT,
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION,
PRIMARY KEY (ID)
);

CREATE TABLE Warehouses(
ID INT,
WarehouseName VARCHAR(50),
WarehouseAmount INT,
PRIMARY KEY (ID)
);
Comment on lines +21 to +26

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Potential issue: The Warehouses table does not include a WarehouseAddress column. If the task requires each warehouse to have an address (as suggested by the checklist or requirements), you should add a WarehouseAddress (or AddressID) column and update the INSERT statements accordingly.


CREATE TABLE ProductInventory (
ID INT,
ProductName VARCHAR(50),
WarehouseAmount INT,
WarehouseName VARCHAR(50),
WarehouseAddress VARCHAR(50),
CountryID INT,
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION,
WarehouseID INT,
FOREIGN KEY (WarehouseID) REFERENCES Warehouses(ID) ON DELETE NO ACTION,
AddressID INT,
FOREIGN KEY (AddressID) REFERENCES Addresses(ID) ON DELETE NO ACTION,
PRIMARY KEY (ID)
);

Expand All @@ -26,8 +41,18 @@ INSERT INTO Countries (ID,Name)
VALUES (1, 'Country1');
INSERT INTO Countries (ID,Name)
VALUES (2, 'Country2');

INSERT INTO Addresses (ID,Street,City,CountryID)
VALUES (1, 'Street-1', 'City-1', 1);
INSERT INTO Addresses (ID,Street,City,CountryID)
VALUES (2, 'Street-2', 'City-2', 2);

INSERT INTO Warehouses (ID,WarehouseName,WarehouseAmount)
VALUES (1, 'Warehouse-1', 2);
Comment on lines +50 to +51

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error: The Warehouses table definition includes a WarehouseAddress column, but the INSERT statement does not provide a value for it. You need to include a value for WarehouseAddress in the INSERT statement.

INSERT INTO Warehouses (ID,WarehouseName,WarehouseAmount)
VALUES (2, 'Warehouse-2', 5);
Comment on lines +52 to +53

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error: The Warehouses table definition includes a WarehouseAddress column, but the INSERT statement does not provide a value for it. You need to include a value for WarehouseAddress in the INSERT statement.


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 ProductInventory (ID,ProductName,WarehouseID,AddressID)
VALUES (1, 'AwersomeProduct', 1, 1);
INSERT INTO ProductInventory (ID,ProductName,WarehouseID,AddressID)
VALUES (2, 'AwersomeProduct', 2, 2);