Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Data Bases > IBM DB2 > How to add lead...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 9 Topic 8855 of 9056
Post > Topic >>

How to add leading zeroes

by "lenygold via DBMonster.com" <u41482@[EMAIL PROTECTED] > May 5, 2008 at 03:27 PM

I have the following column:

1.4.1     
1.10.1    
1.10.1.2.2
1.22.99.1 
2         
2.8.11    
2.7.7     

I am trying to add leading zeros to every part before dots, to make them 3
digit numbers:
001.004.001  
001.010.001
001.010.001
001.022.099.001
002
002.008.011
002.007.007

My first try did't work:
SELECT
  REPLACE   ('1.4.22.34 ', S,  B)
 FROM  (SELECT  '.34 ' , '.034 '
             FROM SYSIBM.SYSDUMMY1
   UNION  SELECT    '.4.' , '.004.'
                   FROM SYSIBM.SYSDUMMY1
   UNION  SELECT    '.22.' , '.022.'
                   FROM SYSIBM.SYSDUMMY1) T(S,B)
 
output:
 
1.4.022.34
1.4.22.034
1.004.22.34

Any idea how to produce requested result?
Thank's in advance
Lenny G.

-- 
Message posted via DBMonster.com
http://www.dbmonster.com/Uwe/Forums.aspx/ibm-db2/200805/1
 




 9 Posts in Topic:
How to add leading zeroes
"lenygold via DBMons  2008-05-05 15:27:03 
Re: How to add leading zeroes
Lennart <Erik.Lennart.  2008-05-05 12:14:06 
Re: How to add leading zeroes
Tonkuma <tonkuma@[EMAI  2008-05-06 00:21:47 
Re: How to add leading zeroes
--CELKO-- <jcelko212@[  2008-05-06 11:39:29 
Re: How to add leading zeroes
"Serman D." <  2008-05-06 00:24:48 
Re: How to add leading zeroes
"lenygold via DBMons  2008-05-06 11:48:54 
Re: How to add leading zeroes
Tonkuma <tonkuma@[EMAI  2008-05-06 05:59:15 
Re: How to add leading zeroes
"lenygold via DBMons  2008-05-07 15:38:05 
Re: How to add leading zeroes
Lennart <Erik.Lennart.  2008-05-06 08:13:10 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan13V112 Sun Jul 6 20:17:27 CDT 2008.