Sql: add a column to existing table and uniquely number them - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:03:23Z http://stackoverflow.com/feeds/question/108211 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them 4 Sql: add a column to existing table and uniquely number them Adhip Gupta 2008-09-20T13:57:14Z 2008-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#108227 14 Answer by Simon Johnson for Sql: add a column to existing table and uniquely number them Simon Johnson 2008-09-20T14:01:09Z 2008-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#108233 0 Answer by vaske for Sql: add a column to existing table and uniquely number them vaske 2008-09-20T14:03:13Z 2008-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#108235 3 Answer by Ilya Kochetov for Sql: add a column to existing table and uniquely number them Ilya Kochetov 2008-09-20T14:04:01Z 2008-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#108236 0 Answer by Joshua for Sql: add a column to existing table and uniquely number them Joshua 2008-09-20T14:04:21Z 2008-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#108237 4 Answer by Roy Tang for Sql: add a column to existing table and uniquely number them Roy Tang 2008-09-20T14:04:22Z 2008-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#108253 2 Answer by Tom Martin for Sql: add a column to existing table and uniquely number them Tom Martin 2008-09-20T14:09:39Z 2008-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>