Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Combining union and union all

    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),...

  • RE: Temp Tables

    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).

Viewing 2 posts - 1 through 2 (of 2 total)