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
44 changes: 29 additions & 15 deletions task.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,39 @@ CREATE TABLE Countries (
PRIMARY KEY (ID)
);

CREATE TABLE Warehouses (
ID INT AUTO_INCREMENT PRIMARY KEY,
Name VARCHAR(50),
Adress VARCHAR(50),
CountryID INT,
FOREIGN KEY (CountryID) REFERENCES Countries(ID)
);

CREATE TABLE Products (
ID INT AUTO_INCREMENT PRIMARY KEY,
Name VARCHAR(50)
);


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

-- Populate test data

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);
VALUES (1, 'Country1'), (2, 'Country2');

INSERT INTO Warehouses (ID, Name, Adress, CountryID)
VALUES (1, 'Warehouse-1', 'City-1, Street-1', 1), (2, 'Warehouse-2', 'City-2, Street-2', 2);
Comment on lines +40 to +41

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Since the ID column in the Warehouses table is defined with AUTO_INCREMENT, you should not provide a value for it in the INSERT statement. It's a best practice to let the database generate the primary key value automatically. Consider removing ID from the column list and the corresponding values from the VALUES clause.


INSERT INTO Products (ID, Name)
VALUES (1, 'AwesomeProduct');
Comment on lines +43 to +44

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Similar to the Warehouses table, the ID column for Products is AUTO_INCREMENT. You should omit it from the INSERT statement to allow the database to automatically assign a unique ID.


INSERT INTO ProductInventory (ID,ProductID,WarehouseID,WarehouseAmount)
VALUES (1, 1, 1, 2), (2, 1, 2, 5);
Comment on lines +46 to +47

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

The ID column in ProductInventory is also an AUTO_INCREMENT column. It's best to let the database handle its value. Please remove it and its corresponding values from this INSERT statement.