Skip to content
Open
Changes from 1 commit
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
27 changes: 18 additions & 9 deletions task.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ CREATE TABLE Countries (
PRIMARY KEY (ID)
);

CREATE TABLE Warehouses (
ID INT,
Name VARCHAR(50),
Address VARCHAR(100),
CountryID INT,
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION,
PRIMARY KEY (ID)
);
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,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

While this table might seem to be in 3NF with ID as the primary key, it doesn't fully meet the goals of normalization. The ProductName column creates data redundancy (e.g., 'AwesomeProduct' is repeated), which can lead to update, insertion, and deletion anomalies. A better 3NF design would involve creating a separate Products table for product information and using a ProductID foreign key in this table instead of ProductName.

FOREIGN KEY (WarehouseID) REFERENCES Warehouses(ID) ON DELETE CASCADE,
PRIMARY KEY (ID)
);

Expand All @@ -26,8 +32,11 @@ 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 Warehouses(ID, Name, Address, CountryID)
VALUES (1,'Warehouse-1', 'City-1, Street-1', 1);
INSERT INTO Warehouses(ID, Name, Address, CountryID)
VALUES (2, 'Warehouse-2', 'City-2, Street-2', 2);
INSERT INTO ProductInventory(ID,ProductName,WarehouseAmount,WarehouseID)
VALUES (1, 'AwesomeProduct', 2, 1);
INSERT INTO ProductInventory(ID,ProductName,WarehouseAmount,WarehouseID)
VALUES (2, 'AwesomeProduct', 5,2);
Loading