I need to add a constraint to various Feilds in my table.
On executing the following code I get Incorrect Syntax by Constraint. Please see attached code
All help highly regarded
R
ALTER TABLE [Nop].[dbo].[Product]
Alter Column PacksPerLayer int NOT NULL
CONSTRAINT CK_Product_PacksPerLayer DEFAULT '0'
GO