What’s the best way to capitalise the first letter of each word in a string in SQL Server.
|
1
|
|||
|
|
|
From http://www.sql-server-helper.com/functions/initcap.aspx
There is a simpler/smaller one here: |
||
|
|
|
|
Thomas Owens is right, this should be done in the display layer not in the database. String manipulation and looping are a couple of the things SQL Server is worst at, so they really ought to be avoided in your database. Especially if this will be a popular query. |
||
|
|
|
|
A variation of the one I've been using for quite some time is:
You can easily modify to handle characters after items other than spaces if you wanted to. |
||
|
|
|
|
A great set of string manipulation functions can be found here: http://www.simple-talk.com/sql/t-sql-programming/sql-string-user-function-workbench-part-1/ |
||
|
|
