Live ORACLE

if you are Oracle Developer ,than this Blog most likely will make you happy.

About my Blog

This Blog particularized for Oracle Developers ... you will see interesting Codes for SQL , PL/SQL as well as new ideas for Developer Suite and Client Tools that will help you in your professional life ... and I hope I reach for your satisfaction.

About Me

I'm Hany Freedom , 25 years old , I live in EL-Minia City in Egypt , I'm Moderator at ArabOUG.org the best Arabic Forum for ORACLE on the Net. if you interested to know more about me .... just Click Here.

Using %NOTFOUND


DECLARE

CURSOR c1 IS

SELECT last_name,

salary

FROM employees

WHERE ROWNUM < 11;

my_ename employees.last_name%TYPE;

my_salary employees.salary%TYPE;

BEGIN

OPEN c1;



LOOP

FETCH c1 INTO my_ename,my_salary;



IF c1%NOTFOUND THEN -- fetch failed, so exit loop



-- Another form of this test is "EXIT WHEN c1%NOTFOUND OR c1%NOTFOUND IS NULL;"

EXIT;

ELSE -- fetch succeeded



dbms_output.Put_line('Name = '

||my_ename

||', salary = '

||my_salary);

END IF;

END LOOP;

END;

/




Output :-

Name = OConnell, salary = 2600
Name = Grant, salary = 2600
Name = Whalen, salary = 4400
Name = Hartstein, salary = 13000
Name = Fay, salary = 6000
Name = Mavris, salary = 6500
Name = Baer, salary = 10000
Name = Higgins, salary = 12000
Name = Gietz, salary = 8300
Name = King, salary = 24000

PL/SQL procedure successfully completed.

Share/Save/Bookmark

0 comments:

Post a Comment



Newer Posts Older Posts Home Page
 
http://www.dpriver.com/images/sqlpp-banner-2.png

Thanks for reading my Blog ... you Visitor Number :-