I am trying to find all the records for a column that does not have all capital letters, ABCDEFGHIJKLMNOPQRSTUVWXYZ. I tried the following:
Select widget_column
from widget_table
where widget_column not like '%ABCDEFGHIJKLMNOPQRSTUVWXYZ%'
However I still got records back that had all capital letters like:
WIDGETPRODUCT
Can someone help?
So I want to identify records like:
Widgetproduct
Widget(product)
WidgétPRODUCT
Select widget_column
from widget_table
where widget_column not like '%ABCDEFGHIJKLMNOPQRSTUVWXYZ%'
However I still got records back that had all capital letters like:
WIDGETPRODUCT
Can someone help?
So I want to identify records like:
Widgetproduct
Widget(product)
WidgétPRODUCT