Jan 28, 2004 #1 acct98 IS-IT--Management Aug 15, 2002 194 US Does anyone have a script to search for lowercase letters in a sting?
Jan 28, 2004 1 #2 carp MIS Sep 16, 1999 2,622 US 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 Upvote 0 Downvote
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