I'm searching for a long time for some way to iterate through PL/SQL row, but I did not get any appropriate results.
For example, if I have a PL/SQL row that looks like this row(first_name,last_name)
and I want to print the first name and the last name using PL/SQL without knowledge about the row i.e. I don't know how the row looks like so I need some kind of code that looks like this
FOR column IN My_Row --some way to iterate through the row.
LOOP
PRINT column... --do my stuff, in this example
END LOOP;