vote up 1 vote down star

I need to strip leading spaces from a column in Oracle. I've Googled but haven't found any answers except to write my own function which I'd like to avoid.

What's the easiest way to accomplish this?

flag

71% accept rate
google.com/search?hl=en&rls=en&hs=ja1&… – David Aldridge Jul 13 at 13:47
Touché. Though now this page is the second result ;) – larf311 Jul 14 at 17:24

3 Answers

vote up 9 vote down check

You can user LTRIM Oracle function:

SQL> select ltrim(' hello world') from dual;

LTRIM('HELLOWORLD')
-------------------
hello world

For ending spaces you can use RTRIM. And for more options check out TRIM.

link|flag
vote up 0 vote down

UPDATE table SET field = TRIM(field);

link|flag
vote up 0 vote down

use the trim function removes all specified characters either from the beginning or the ending of a string.

trim( [ leading | trailing | both  [ trim_character ]  ]   string1 )
link|flag

Your Answer

Get an OpenID
or

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