Hi ,
Can you share solution for the below logic
DECLARE
A NUMBER ;
BEGIN
FOR I IN 1..10 LOOP
A := &ENTER_THE_VALUE_FOR_A ;
DBMS_OUTPUT.PUT_LINE ( A);
END LOOP;
END;
My requirement is to get the value 10 times via bing variable , whereas in the above code If I enter the first time for the rest of the loop it is taking the same , can you please help me to correct the code .