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
61 changes: 38 additions & 23 deletions task.sql
Original file line number Diff line number Diff line change
@@ -1,33 +1,48 @@
-- Create database and tables
DROP DATABASE IF EXISTS ShopDB;

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Critical issue: The DROP DATABASE IF EXISTS ShopDB; statement here will remove the database and all its contents, making all previous table and data creation above this line redundant. If the task requires both the unnormalized and normalized schemas, do not drop the database here. If only the normalized schema is needed, remove the initial part of the script.


CREATE DATABASE ShopDB;
USE ShopDB;

CREATE TABLE Countries (
ID INT,
Name VARCHAR(50),
PRIMARY KEY (ID)
ID INT PRIMARY KEY,
Name VARCHAR(100) NOT NULL
);

CREATE TABLE ProductInventory (
ID INT,
ProductName VARCHAR(50),
WarehouseAmount INT,
WarehouseName VARCHAR(50),
WarehouseAddress VARCHAR(50),
CREATE TABLE Warehouses (
ID INT PRIMARY KEY,
Name VARCHAR(100) NOT NULL,
Address VARCHAR(255),
CountryID INT,
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION,
PRIMARY KEY (ID)
FOREIGN KEY (CountryID) REFERENCES Countries(ID)
);

CREATE TABLE Products (
ID INT PRIMARY KEY,
ProductName VARCHAR(100) NOT NULL
);

-- 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);
CREATE TABLE ProductInventory (
ID INT PRIMARY KEY,
ProductID INT,
WarehouseID INT,
Amount INT,
FOREIGN KEY (ProductID) REFERENCES Products(ID),
FOREIGN KEY (WarehouseID) REFERENCES Warehouses(ID)
);

INSERT INTO Countries (ID, Name) VALUES
(1, 'Ukraine'),
(2, 'Poland');

INSERT INTO Warehouses (ID, Name, Address, CountryID) VALUES
(1, 'Main Warehouse', 'Kyiv, UA', 1),
(2, 'Backup Warehouse', 'Warsaw, PL', 2);

INSERT INTO Products (ID, ProductName) VALUES
(1, 'Laptop'),
(2, 'Smartphone');

INSERT INTO ProductInventory (ID, ProductID, WarehouseID, Amount) VALUES
(1, 1, 1, 50),
(2, 2, 1, 30),
(3, 2, 2, 100);
Loading