Search Results

Search: Posts Made By: mail.chiranjit
7,054
Posted By Yoda
You have to use a LOOP to fetch and print all of...
You have to use a LOOP to fetch and print all of them:-

BEGIN
OPEN C1;
LOOP
FETCH C1 into KS_UID;
EXIT WHEN C1%NOTFOUND;
DBMS_OUTPUT.PUT_LINE(KS_UID);
END LOOP;
CLOSE C1;
END;
/
532
Posted By Scrutinizer
For starters: use if, not 'If'. You need...
For starters:

use if, not 'If'.
You need a space after the [[
There is no done statement
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 02:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy