This commit is contained in:
Arkadiusz Hypki 2024-03-18 13:15:20 +01:00
commit 5cc0e52d3b
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
Create html view, in plain text, for some of the SQl results. Create html view, in plain text, for some of the SQL results.

View File

@ -14,7 +14,7 @@ CREATE TABLE Boxes (
Warehouse INTEGER NOT NULL, Warehouse INTEGER NOT NULL,
PRIMARY KEY (Code), PRIMARY KEY (Code),
FOREIGN KEY (Warehouse) REFERENCES Warehouses(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(1,'Chicago',3);
INSERT INTO Warehouses(Code,Location,Capacity) VALUES(2,'Chicago',4); INSERT INTO Warehouses(Code,Location,Capacity) VALUES(2,'Chicago',4);