SQL Server: TSQL Select Into with Identity

Tags: SQL Server, TSQL, select, into, identity

SELECT IDENTITY(INT,1,1) AS ID,*
INTO NewTable FROM ExistingTable

No Comments

You must log on to comment.