From 05c6b2f058e6f1ac7e2da32007f7308a14ca53ef Mon Sep 17 00:00:00 2001 From: ahypki Date: Thu, 14 Mar 2024 09:38:14 +0100 Subject: [PATCH 1/2] Update 03_Sql_html/html_excercise.txt --- 03_Sql_html/html_excercise.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Sql_html/html_excercise.txt b/03_Sql_html/html_excercise.txt index 92d42fe..580ee38 100644 --- a/03_Sql_html/html_excercise.txt +++ b/03_Sql_html/html_excercise.txt @@ -1 +1 @@ -Create html view, in plain text, for some of the SQl results. \ No newline at end of file +Create html view, in plain text, for some of the SQL results. \ No newline at end of file From ccbb10659a7533233a7906514238e4f8566cc150 Mon Sep 17 00:00:00 2001 From: ahypki Date: Thu, 14 Mar 2024 10:33:33 +0100 Subject: [PATCH 2/2] Update 03_Sql_html/schema.sql Removed ENGINE --- 03_Sql_html/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Sql_html/schema.sql b/03_Sql_html/schema.sql index 226069f..2850fd7 100644 --- a/03_Sql_html/schema.sql +++ b/03_Sql_html/schema.sql @@ -14,7 +14,7 @@ CREATE TABLE Boxes ( Warehouse INTEGER NOT NULL, PRIMARY KEY (Code), FOREIGN KEY (Warehouse) REFERENCES Warehouses(Code) - ) ENGINE=INNODB; + ) ; INSERT INTO Warehouses(Code,Location,Capacity) VALUES(1,'Chicago',3); INSERT INTO Warehouses(Code,Location,Capacity) VALUES(2,'Chicago',4);