How to write a query to return rows having varchar column containing even a single occurrence of special characters like Ÿ and ¿
I have a table having columns with values like
MINNEAŸPOLIS and THAN ¿VV ¿A
Only allowable chars in this column are alphabets, numerics, spaces, dots and brackets.
Please help write a SELECT SQL query using Regexp_like or any other option.