Oct 2, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 I need help with syntax to change an all upper case field to first letter capitilized and the rest in lower case.
I need help with syntax to change an all upper case field to first letter capitilized and the rest in lower case.
Oct 2, 2001 #2 fluteplr Programmer Joined Oct 23, 2000 Messages 1,599 Location US update mytable set myfield = left(myfield,1)+lower(substring(myfield,2,len(myfield)-1)) Upvote 0 Downvote