Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

string function - convert to upper/lower case 1

Status
Not open for further replies.

password99

Technical User
Jul 19, 2002
122
US
what is the SQL function to convert column value to upper or lower case?

select upper(name) from table should return names in upper case??
 
Try the UCase(String) function. This will convert all characters to Upper Case. Conversely use LCase(String) to return all characters in string to lower case.

Bob Scriver
[blue]Want the best answers? See FAQ181-2886[/blue]


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top