Is there a tidy way in SQL to proper case a string. Currently I'm using
This works fine but I was just hoping to find a way to make the code a little tidier.
Cheers.
I love deadlines. I like the whooshing sound they make as they fly by
Douglas Adams
(1952-2001)
Code:
upper(left(TBL_PATNT.FORENAME,1))+
lower(right(TBL_PATNT.FORENAME,len(TBL_PATNT.FORENAME)-1))
This works fine but I was just hoping to find a way to make the code a little tidier.
Cheers.
I love deadlines. I like the whooshing sound they make as they fly by
Douglas Adams
(1952-2001)