Viewing post 1 (of 1 total)
We can add constraints on table variable like primary key, unique key and chekc constraints etc.. for eg.:
DECLARE @MyTable TABLE
(
ProductID int primary key IDENTITY(1,1),
Price money CHECK(Price...
September 23, 2008 at 11:46 pm
#876122