Sql: add a column to existing table and uniquely number them - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T15:03:23Zhttp://stackoverflow.com/feeds/question/108211http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them4Sql: add a column to existing table and uniquely number themAdhip Gupta2008-09-20T13:57:14Z2008-10-08T16:33:01Z
<p>I want to add a column to an existing legacy database and write a procedure by which I can assign each record a different value. Something like add a column and autogenerate the data for it.</p>
<p>Like, if I add a new column called "ID" (number) I want to then initialize a unique value to each of the records. So, my ID column will have records from say 1 to 1000. How do I do that?</p>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108227#10822714Answer by Simon Johnson for Sql: add a column to existing table and uniquely number themSimon Johnson2008-09-20T14:01:09Z2008-09-20T14:01:09Z<p>This will depend on the database but for SQL Server, this could be achieved as follows:</p>
<pre><code>alter table Example
add NewColumn int identity(1,1)
</code></pre>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108233#1082330Answer by vaske for Sql: add a column to existing table and uniquely number themvaske2008-09-20T14:03:13Z2008-09-20T14:03:13Z<p>first add new column to existing table in your db, and after that you can write one store procedure to fill those fields in table, or you can do it from your code.
Read some tutorial how to write store procedure, for db that you use. </p>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108235#1082353Answer by Ilya Kochetov for Sql: add a column to existing table and uniquely number themIlya Kochetov2008-09-20T14:04:01Z2008-09-20T14:04:01Z<p>Just using an ALTER TABLE should work. Add the column with the proper type and an IDENTITY flag and it should do the trick</p>
<p>Check out this MSDN article <a href="http://msdn.microsoft.com/en-us/library/aa275462(SQL.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa275462(SQL.80).aspx</a> on the ALTER TABLE syntax</p>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108236#1082360Answer by Joshua for Sql: add a column to existing table and uniquely number themJoshua2008-09-20T14:04:21Z2008-09-20T14:04:21Z<p>Depends on the database as each database has a different way to add sequence numbers. I would alter the table to add the column then write a db script in groovy/python/etc to read in the data and update the id with a sequence. Once the data has been set, I would add a sequence to the table that starts after the top number. Once the data has been set, set the primary keys correctly.</p>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108237#1082374Answer by Roy Tang for Sql: add a column to existing table and uniquely number themRoy Tang2008-09-20T14:04:22Z2008-09-20T14:04:22Z<p>for oracle you could do something like</p>
<p>alter table mytable add (myfield integer);</p>
<p>update mytable set myfield = rownum;</p>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108253#1082532Answer by Tom Martin for Sql: add a column to existing table and uniquely number themTom Martin2008-09-20T14:09:39Z2008-09-20T14:09:39Z<p>It would help if you posted what SQL database you're using. For MySQL you probably want auto_increment:</p>
<pre><code>ALTER TABLE tableName ADD id MEDIUMINT NOT NULL AUTO_INCREMENT KEY</code></pre>
<p>Not sure if this applies the values retroactively though. If it doesn't you should just be able to iterate over your values with a stored procedure or in a simple program (as long as no one else is writing to the database) and set use the <code>LAST_INSERT_ID()</code> function to generate the id value.</p>