'auto increment column'
U can select an IDENTITY type column and all the other fields from the required table into a temporary table and the select from that temporary table like:
USE pubs
GO
SELECT IDENTITY(int,1,1) AS ID, *
INTO #newtab
FROM authors
SELECT * FROM #newtab
GO
(Thanks to Neil Pike)
Regards.