hi all,
i need to check if a column that is in varchar2 datatype to check if the column contain any lowercase letters.
This is how i did the same check in sql server2000. how do I do something similar in oracle 8i?
SELECT id FROM table_name
WHERE CAST(column_name AS VARbinary) <> CAST(upper(column_name) AS varbinary)
thank you!
i need to check if a column that is in varchar2 datatype to check if the column contain any lowercase letters.
This is how i did the same check in sql server2000. how do I do something similar in oracle 8i?
SELECT id FROM table_name
WHERE CAST(column_name AS VARbinary) <> CAST(upper(column_name) AS varbinary)
thank you!