MySQL Forums
Forum List  »  Stored Procedures

Re: Capitalize each word in a string ?
Posted by: Marc Sàbat
Date: May 02, 2009 03:57AM

Jason's solutions (a clever one, may I say) works fine only for one word. Not for EACH word as the topic states.

select CONCAT(UPPER(SUBSTRING('mARC sABAT',1,1)),LOWER(SUBSTRING('mARC sABAT',2))) as mystring

This outputs:
Marc sabat



Edited 1 time(s). Last edit at 05/02/2009 04:00AM by Marc Sàbat.

Options: ReplyQuote


Subject
Views
Written By
Posted
6139
August 24, 2008 07:50AM
5522
September 15, 2008 01:33PM
7104
November 11, 2008 07:11AM
5009
August 24, 2008 07:52AM
Re: Capitalize each word in a string ?
4001
May 02, 2009 03:57AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.