vote up 0 vote down star

What mysql functions are there (if any) to trim leading zeros from an alphanumeric text field?

Field with value "00345ABC" would need to return "345ABC".

flag

75% accept rate

4 Answers

vote up 5 vote down check

You are looking for the trim() function.

Alright, here is your example

SELECT TRIM(LEADING '0' FROM myfield) FROM table
link|flag
++ Specifically TRIM(LEADING '0' FROM '000345ANB095') – Tom Ritter Sep 18 '08 at 21:08
vote up 1 vote down

I believe you'd be best off with this:

SELECT TRIM(LEADING '0' FROM myField)

link|flag
vote up 0 vote down

How can we add preceding zeros to VARCHAR value 0000000008

link|flag
vote up 0 vote down

simply perfect:

SELECT TRIM(LEADING '0' FROM myfield) FROM table

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.