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
53 changes: 32 additions & 21 deletions task.sql
Original file line number Diff line number Diff line change
@@ -1,33 +1,44 @@
-- Create database and tables

DROP DATABASE IF EXISTS ShopDB;
CREATE DATABASE ShopDB;
USE ShopDB;

CREATE TABLE Countries (
ID INT,
ID INT AUTO_INCREMENT,

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

This comment applies to the beginning of the file, as no commentable lines are available there. To meet all requirements, you should add a statement to drop the ShopDB database if it already exists. This makes your script idempotent, meaning it can be run multiple times without causing an error. Consider adding DROP DATABASE IF EXISTS ShopDB; before the CREATE DATABASE statement.

Name VARCHAR(50),
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,
CREATE TABLE Products (
ID INT AUTO_INCREMENT,
Name VARCHAR(50),
PRIMARY KEY (ID)
);
CREATE TABLE Warehouses (
ID INT AUTO_INCREMENT,
Name VARCHAR(50),
Address VARCHAR(50),
CountryID INT,
PRIMARY KEY (ID),
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE CASCADE
);

CREATE TABLE Inventory (
ID INT AUTO_INCREMENT,
ProductID INT,
WarehouseID INT,
Amount INT,
PRIMARY KEY (ID),
FOREIGN KEY (ProductID) REFERENCES Products(ID) ON DELETE CASCADE,
FOREIGN KEY (WarehouseID) REFERENCES Warehouses(ID) ON DELETE CASCADE
);
INSERT INTO Countries (ID, Name) VALUES (1, 'Country1');
INSERT INTO Countries (ID, Name) VALUES (2, 'Country2');
INSERT INTO Products (ID, Name) VALUES (1, 'AwersomeProduct');

-- Populate test data
INSERT INTO Warehouses (ID, Name, Address, CountryID) VALUES
(1, 'Warehouse-1', 'City-1, Street-1', 1),
(2, 'Warehouse-2', 'City-2, Street-2', 2);

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 Inventory (ProductID, WarehouseID, Amount) VALUES
(1, 1, 2),
(1, 2, 5);
Loading