Identity In temp Table February 28, 2013 Get link Facebook X Pinterest Email Other Apps Insert data into table with identity column This query is used to INSERT identity column into tamp table SELECT IDENTITY(INT, 1 , 1) AS ID, COLUMN1 , COLUMN2 INTO #TABLE1 FROM dbo.TABLE2; Comments
Comments
Post a Comment