```sql -- Create the Products table CREATE TABLE Products ( ProductID INT PRIMARY KEY, ProductName VARCHAR(255), CategoryID INT, SupplierID INT, Price DECIMAL(10, 2) ); -- Create the

Code produit:
2012113848