Aggiunto inserimento categorie base su DB base

This commit is contained in:
2026-03-20 11:31:57 +01:00
parent 4d76fd82a9
commit fbebe4456b

View File

@@ -44,3 +44,7 @@ CREATE TABLE OrderItems(
FOREIGN KEY (OrderID) REFERENCES Orders(OrderID),
FOREIGN KEY (ProductID) REFERENCES Products(ProductID)
);
-- INSERIMENTO DATI
INSERT INTO Categories(Name) VALUES
('Elettronica'),('Networking'),('Telefonia')