Hello,
Thanks in advance for any and all help. Basically (to keep it as short as possible) I have a table with 2 columns that comprise the key (we'll call them idx1 and idx2).
What I want to do is (starting at 1, then 2, etc) assign yet a 3rd idx automatically. So Say I have...
idx1 idx2
-------------
123 555
123 777
123 999
456 111
567 222
567 333
I'd like to see...
idx1 idx2 newColumn
---------------------------
123 555 01
123 777 02
123 999 03
456 111 01
567 222 02
567 333 02
Thanks again for any help with this!!!
Thanks in advance for any and all help. Basically (to keep it as short as possible) I have a table with 2 columns that comprise the key (we'll call them idx1 and idx2).
What I want to do is (starting at 1, then 2, etc) assign yet a 3rd idx automatically. So Say I have...
idx1 idx2
-------------
123 555
123 777
123 999
456 111
567 222
567 333
I'd like to see...
idx1 idx2 newColumn
---------------------------
123 555 01
123 777 02
123 999 03
456 111 01
567 222 02
567 333 02
Thanks again for any help with this!!!