Hi
I have a table with two columns (ID,ROW) I need to make the ID COLUMN unique and increase it value by 1 for each row.
-----------------------
ID ROW
1 NULL
1 NULL
1 NULL
1 NULL
How can I replace the each 1 with sequentially increased value?
to be 1 2 3 4?
Thanks in advance!