Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: HELP! PL/SQL-LEADING ZERO
Ho wrote:
> I need to create a table with 1000 records. I issue the INSERT command
> within a loop.
>
> INSERT INTO TEST (RUNNO) VALUES(I)
>
> After running the SQL, the records are:
>
> 1
> 2
> 3.....
>
> What I want is :
>
> 0001
> 0002
> .
> .
> .
> 0999
> 1000
>
> How to achieve this ?
>
> Many thanks for your help in advance.
When yout select the records in sqlplus just use a 'column' command to format the data. No need to tamper with the actual data itself.
column mycol format '0999' Received on Sun Nov 05 2000 - 08:46:55 CST
![]() |
![]() |