From 81a06bcb70bc9459e416813fbef3d924d3478dd8 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Fri, 20 Mar 2026 11:38:24 +0100 Subject: [PATCH] Aggiunta prodotto di esempio --- base_db.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/base_db.sql b/base_db.sql index feda2d2..a964293 100644 --- a/base_db.sql +++ b/base_db.sql @@ -47,4 +47,7 @@ CREATE TABLE OrderItems( -- INSERIMENTO DATI INSERT INTO Categories(Name) VALUES -('Elettronica'),('Networking'),('Telefonia'); \ No newline at end of file +('Elettronica'),('Networking'),('Telefonia'); + +INSERT INTO Products(ProductName,Description,CategoryID,Price,ImagePath,StockQuantity) VALUES +('Yealink T31P',NULL,3,51,'t31p.png',104); \ No newline at end of file