Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Increment question

    If you define your temp table just make the column in question an Identity column.

     

    CREATE TABLE #temp Col1 int IDENTITY(1,1), col2 <datatype>...

     

    Then just dont include this column in your insert...

Viewing post 1 (of 1 total)