كل كلمات امتحان الـ IELTS اللى هتحتاجها
12 years ago
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.
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.
DECLARE
v_empid NUMBER(6);
v_last_name VARCHAR2(25);
v_first_name VARCHAR2(20);
BEGIN
v_empid := 300;
v_last_name := 'Lee '; -- note trailing blanks
v_first_name := 'Brenda';
dbms_output.Put_line('Employee Id: '
||v_empid
||' Name: '
||Rtrim(v_last_name)
||', '
||v_first_name);
END;
/
Using the Function RTRIM
Hany Freedom is a fan of |
0 comments:
Post a Comment