I need to select a bunch of data into a temp table to then do some secondary calculations; To help make it work more efficiently, I would like to have an IDENTITY column on that table. I know I could declare the table first with an identity, then insert the rest of the data into it, but is there a way to do it in 1 step?
|
2
|
|||
|
|
|
Oh ye of little faith:
http://msdn.microsoft.com/en-us/library/aa933208(SQL.80).aspx |
||||
|
|
|
Hey Now, Good Question & Matt's was a good answer. To expand on the syntax a little if the oldtable has an identity a user could run the following:
-- That would be if the oldtable was scripted something as such:
Thx 4 the info this question helped me, Catto |
|||
|
|
|
|
You commented: not working if oldtable has an identity column. I think that's your answer. The #newtable gets an identity column from the oldtable automatically. Run the next statements:
It shows you that #newtable does have the identity column. If you don't want the identity column, try this at creation of #newtable:
|
|||
|
|
|
|
To make things efficient, you need to do declare that one of the columns to be a primary key:
That won't take a variable for the column name. Trust me, you are MUCH better off doing a : CREATE #myTable TABLE (or possibly a DECLARE TABLE @myTable) , which allows you to set IDENTITY and PRIMARY KEY directly. |
||||||
|
|
|
You could do a Select Into, which would create the table structure on the fly based on the fields you select, but I don't think it will create an identity field for you. |
||
|
|
|
|
IIRC, the INSERT INTO command uses the schema of the source table to create the temp table. That's part of the reason you can't just try to create a table with an additional column. Identity columns are internally tied to a SQL Server construct called a generator. |
||
|
|
