Click here to monitor SSC
SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 
        
Home       Members    Calendar    Who's On


Add to briefcase

Strip leading zeros of a field and add a zero to the back of a field. Expand / Collapse
Author
Message
Posted Wednesday, February 20, 2013 4:10 PM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: General Forum Members
Last Login: Tuesday, March 05, 2013 3:24 PM
Points: 6, Visits: 25
Hi Guys

I have a field called Account.

It consits of the following sample data.

0090
>100
0091
0092

I need a script that will strip the leading zero of the 0090 data and the another to add a zero to the back.

So in the end, the sample data will look like this (With the >100 data not being affected.

0900
>100
0910
0920

Thanking you in Advance.

Andre
Post #1422348
Posted Wednesday, February 20, 2013 4:55 PM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: General Forum Members
Last Login: Tuesday, March 05, 2013 3:24 PM
Points: 6, Visits: 25
Hi Again

Further to this I have also tried the following

UPDATE tablename
SET column = Ltrim(column,'0');

But i get this when I parse

Msg 174, Level 15, State 1, Line 2
The ltrim function requires 1 argument(s).

Any ideas?
Post #1422358
Posted Wednesday, February 20, 2013 4:57 PM


Ten Centuries

Ten CenturiesTen CenturiesTen CenturiesTen CenturiesTen CenturiesTen CenturiesTen CenturiesTen Centuries

Group: General Forum Members
Last Login: Today @ 2:26 AM
Points: 1,289, Visits: 3,859
update tablename
set column = stuff(column,1,1,'')+'0'
where column like '009_';



MM




Post #1422359
Posted Wednesday, February 20, 2013 10:15 PM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: General Forum Members
Last Login: Tuesday, March 05, 2013 3:24 PM
Points: 6, Visits: 25
Hi Miste.Magoo

Thanks for that, worked like a dream.

Appreciate the assistance!

A
Post #1422396
Posted Thursday, February 21, 2013 2:21 AM


Ten Centuries

Ten CenturiesTen CenturiesTen CenturiesTen CenturiesTen CenturiesTen CenturiesTen CenturiesTen Centuries

Group: General Forum Members
Last Login: Today @ 2:26 AM
Points: 1,289, Visits: 3,859
C-kweldude (2/20/2013)
Hi Miste.Magoo

Thanks for that, worked like a dream.

Appreciate the assistance!

A


You are most welcome


MM




Post #1422451
« Prev Topic | Next Topic »

Add to briefcase

Permissions Expand / Collapse