Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: PL/SQL-if-statement
I may be overlooking something in this code, but
vOWNER := right(('0000000'||vOWNER),6)
should replace the entire piece of code and handle short, or even null length vOWNER input.
-----Original Message-----
From: Roland.Skoldblom_at_ica.se [SMTP:Roland.Skoldblom_at_ica.se]
Sent: Thursday, April 19, 2001 10:56 AM
To: Multiple recipients of list ORACLE-L Subject: PL/SQL-if-statement
How can I change this pl/sql code, in the while-statement maybe so that
if the field OWNER_NO is NULL, then it should be written six characters?
The code looks like
this:
"IF recCursor.OWNER_NO is null then
vOWNER_NO := '000000';
else
v_OWNER_NO:= to_char(recCursor.OWNER_NO);
WHILE length(vOWNER_NO) < 6 LOOP
vOWNER_NO '0'0' || vOWNER_NO;
END LOOP;
END IF;
How shoud I write to fix this script so therw will be written out 6
characters if the field OWNER_NO is empty. I want to use the WHILE LOOP.
Any one whom can help me with this?
Roland Skoldblom
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: Roland.Skoldblom_at_ica.se Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-LReceived on Thu Apr 19 2001 - 13:30:54 CDT
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: William Rogge INET: William_Rogge_at_voltek.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
![]() |
![]() |