Viewing 2 posts - 1 through 2 (of 2 total)
Answer of the question is wrong !!
select @@VERSION
create table #t1 (col int not null)
create table #t2 (col int not null)
create table #t3 (col int not null)
insert #t1 values (1),...
July 20, 2012 at 3:26 am
#1515376
As far I know, Primary key, constraints & index - all are valid only for temporary table (#Table) where as only first 2 are valid for table variable (@Table).
July 20, 2012 at 2:49 am
#1515357