sql2
# ✅ **1. Create a table `Product` with id, price, and another column** “`sqlCREATE TABLE Product ( ProductId INT IDENTITY(1,1) PRIMARY KEY, Price DECIMAL(10,2) NOT NULL, ProductName VARCHAR(100) NOT NULL);“` — # ✅ **2. Add a constraint to that table** ### Example: add a constraint that **Price must be greater than 0** “`sqlALTER TABLE ProductADD […]
