I know how to do it with vb but how do i do it with Oracle pl/sql?
I have a table with about a thousand records. I want to loop through the recordset and stuff a number into a field..
is there a simple way in Oracle to do something like
id_number = 1001
while not eof
id_field = id_number
id_number = id_number + 1
loop
Im not trying to use an oracle sequence Im just trying to figure out how to loop through a recordset and update records...
thanks for any help...
I have a table with about a thousand records. I want to loop through the recordset and stuff a number into a field..
is there a simple way in Oracle to do something like
id_number = 1001
while not eof
id_field = id_number
id_number = id_number + 1
loop
Im not trying to use an oracle sequence Im just trying to figure out how to loop through a recordset and update records...
thanks for any help...