diff --git a/base_db.sql b/base_db.sql index 8083cf5..e5b3afc 100644 --- a/base_db.sql +++ b/base_db.sql @@ -43,4 +43,8 @@ CREATE TABLE OrderItems( Price DECIMAL(10,2), FOREIGN KEY (OrderID) REFERENCES Orders(OrderID), FOREIGN KEY (ProductID) REFERENCES Products(ProductID) -); \ No newline at end of file +); + +-- INSERIMENTO DATI +INSERT INTO Categories(Name) VALUES +('Elettronica'),('Networking'),('Telefonia') \ No newline at end of file