-
Notifications
You must be signed in to change notification settings - Fork 156
solution by ten4i #170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
solution by ten4i #170
Changes from 4 commits
f346e6a
2482228
a1c98fc
b5f7df5
1f4a80b
d4244f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| -- Create database and tables | ||
|
|
||
| DROP DATABASE IF EXISTS ShopDB; | ||
| CREATE DATABASE ShopDB; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The task requirements specify using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The script must start with |
||
| USE ShopDB; | ||
|
|
||
|
|
@@ -9,25 +9,47 @@ CREATE TABLE Countries ( | |
| PRIMARY KEY (ID) | ||
| ); | ||
|
|
||
| CREATE TABLE ProductInventory ( | ||
| CREATE TABLE Products( | ||
| ID INT, | ||
| ProductName VARCHAR(50), | ||
| WarehouseAmount INT, | ||
| Name VARCHAR (50), | ||
| PRIMARY KEY (ID) | ||
|
|
||
| ); | ||
|
|
||
| CREATE TABLE Warehouses( | ||
| ID INT, | ||
| PRIMARY KEY (ID), | ||
| WarehouseName VARCHAR(50), | ||
| WarehouseAddress VARCHAR(50), | ||
| CountryID INT, | ||
| FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION, | ||
| PRIMARY KEY (ID) | ||
| FOREIGN KEY (CountryID) REFERENCES Countries(ID) ON DELETE NO ACTION | ||
| ); | ||
|
|
||
| CREATE TABLE ProductInventory ( | ||
| ID INT, | ||
| PRIMARY KEY (ID), | ||
| ProductID INT, | ||
| WarehouseAmount INT, | ||
| WarehouseID INT, | ||
| FOREIGN KEY (WarehouseID) REFERENCES Warehouses(ID) ON DELETE NO ACTION, | ||
| FOREIGN KEY (ProductID) REFERENCES Products(ID) ON DELETE NO ACTION | ||
| ); | ||
|
|
||
|
|
||
| -- Populate test data | ||
|
|
||
| INSERT INTO Countries (ID,Name) | ||
| INSERT INTO Countries (ID, Name) | ||
| VALUES (1, 'Country1'); | ||
| INSERT INTO Countries (ID,Name) | ||
| 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 Products(ID, Name) VALUES (1, 'AwersomeProduct'); | ||
|
|
||
| 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, WarehouseAmount, WarehouseID) VALUES (1, 1, 2, 1); | ||
|
|
||
| INSERT INTO ProductInventory (ID, ProductID, WarehouseAmount, WarehouseID) VALUES (2, 1, 5, 2); | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The task requirements explicitly state to use
DROP DATABASE ShopDB;as the first statement beforeCREATE DATABASE ShopDB;. Currently, the script usesDROP DATABASE IF EXISTS ShopDB;which differs from the exact requirement.