Answers for "add id column to temp table insert"

SQL
0

add id column to temp table insert

SELECT *, IDENTITY( int ) AS idcol
  INTO #newtable
  FROM oldtable
Posted by: Guest on February-24-2022

Code answers related to "add id column to temp table insert"

Code answers related to "SQL"

Browse Popular Code Answers by Language