From fbebe4456b3af7becdaac8cd951d6d880203fa0c Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Fri, 20 Mar 2026 11:31:57 +0100 Subject: [PATCH] Aggiunto inserimento categorie base su DB base --- base_db.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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