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 a Search Condition With a CASE Statement


DECLARE

grade CHAR(1) := 'B';

appraisal VARCHAR2(120);

id NUMBER := 8429862;

attendance NUMBER := 150;

min_days CONSTANT NUMBER := 200;

FUNCTION Attends_this_school

(id NUMBER)

RETURN BOOLEAN

IS

BEGIN

RETURN true;

END;

BEGIN

appraisal := CASE

WHEN Attends_this_school(id) = false THEN 'N/A - Student not enrolled'

-- Have to test this condition early to detect good students with bad attendance

WHEN grade = 'F'

OR attendance < min_days THEN 'Poor (poor performance or bad attendance)'

WHEN grade = 'A' THEN 'Excellent'

WHEN grade = 'B' THEN 'Very Good'

WHEN grade = 'C' THEN 'Good'

WHEN grade = 'D' THEN 'Fair'

ELSE 'No such grade'

END;



dbms_output.Put_line('Result for student '

||id

||' is '

||appraisal);

END;

/



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 :-