July 30, 2012 at 10:37 am
Good afternoon,
I have part numbers that begin as RA99999-99. I need to update them all to read RA099999-99. Thanks for any help.
July 30, 2012 at 10:40 am
Will always the first two characters be alphabets ? and will it always be two characters?
July 30, 2012 at 10:41 am
Try
SELECT STUFF ('RA99999-09',3,0,'0')
July 30, 2012 at 10:51 am
The first characters will always be letters.
July 30, 2012 at 10:29 pm
kabaari (7/30/2012)
The first characters will always be letters.
I guess the best way to ask the question is "Do you always want the extra "0" to be inserted into the 3rd character position?" If so, then the STUFF methods listed before this will do the job. If not, post back with some additional details.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply