I am writing a procedure in oracle, when I am getting a variable as rowtype.
I am trying to achieve a test condition based on for loop
FOR idx in 1..10 LOOP
IF POST.SI_AMOUNT||idex <> 0 THEN
NULL;
END IF;
END LOOP;
I have columns in table like this
SI_AMOUNT1,
SI_AMOUNT2,
SI_AMOUNT3,
SI_AMOUNT4,
SI_AMOUNT5,
SI_AMOUNT6,
SI_AMOUNT7,
SI_AMOUNT8,
SI_AMOUNT9,
SI_AMOUNT10
I want to check all columns value by using for loop. is this possible in oracle?
EXECUTE IMMEDIATE..RETURNING INTO..