a. Column Level
GO CREATE TABLE Products ( ProductID INT CONSTRAINT pk_products_pid PRIMARY KEY, ProductName VARCHAR(25) ); GO
b.
There are two ways to define constraints one is at column level and the other is at table level.one can use any of these methods to apply constrains.