Skip to content
Open

Done! #194

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: 40 additions & 13 deletions task.sql
Original file line number Diff line number Diff line change
@@ -1,33 +1,60 @@
-- Create database and tables

DROP DATABASE IF EXISTS ShopDB;
CREATE DATABASE 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.

The task description explicitly instructs you to drop ShopDB if it already exists before recreating it; consider adding a DROP DATABASE ShopDB; (often guarded with IF EXISTS) before this CREATE DATABASE so the script can be rerun cleanly during testing.

USE ShopDB;


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

CREATE TABLE ProductInventory (

CREATE TABLE Product (
ID INT,
ProductName VARCHAR(50),
WarehouseAmount INT,
PRIMARY KEY (ID)
);

CREATE TABLE Warehouses (
ID INT,
WarehouseName VARCHAR(50),
WarehouseAddress VARCHAR(50),
WarehouseAddress VARCHAR(50),
CountryID INT,
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION,
FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION,
PRIMARY KEY (ID)
);


CREATE TABLE ProductInventory (
ID INT,
WarehouseAmount INT,
ProductID INT,
WarehouseID INT,
FOREIGN KEY (ProductID) REFERENCES Product(ID) ON DELETE NO ACTION,
FOREIGN KEY (WarehouseID) REFERENCES Warehouses(ID) ON DELETE NO ACTION,
PRIMARY KEY (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);
INSERT INTO Product (ID, ProductName)
VALUES(1, 'AwersomeProduct');


INSERT INTO Countries (ID, Name) VALUES (1, 'Country1');
INSERT INTO Countries (ID, Name) VALUES (2, 'Country2');


INSERT INTO Warehouses (ID, WarehouseName, WarehouseAddress, CountryID)
VALUES (1, 'Warehouse-1', 'City-1, Street-1', 1);
INSERT INTO Warehouses (ID, WarehouseName, WarehouseAddress, CountryID)
VALUES (2, 'Warehouse-2', 'City-2, Street-2', 2);


INSERT INTO ProductInventory (ID,ProductID,WarehouseID,WarehouseAmount)
VALUES (1, 1, 1, 2);
INSERT INTO ProductInventory (ID,ProductID,WarehouseID,WarehouseAmount)
VALUES (2, 1, 2, 5);
Loading