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.

Assigning a Query Result to a Variable


DECLARE

emp_id employees.employee_id%TYPE := 100;

emp_name employees.last_name%TYPE;

wages NUMBER(7,2);

BEGIN

SELECT last_name,

salary + (salary * Nvl(commission_pct,0))

INTO emp_name,wages

FROM employees

WHERE employee_id = emp_id;



dbms_output.Put_line('Employee '

||emp_name

||' might make '

||wages);

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