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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lower Case Letters 1

Status
Not open for further replies.

acct98

IS-IT--Management
Aug 15, 2002
194
US
Does anyone have a script to search for lowercase letters in a sting?

 
Do you want to identify individual letters or just determine whether or not a string has lower case letters in it?

If the latter, then

SELECT primary_key_column, string_column
FROM my_table
WHERE string_column != UPPER(string_column);

ought to do it.

Elbert, CO
1654 MST
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top