select *
from table
where column LIKE '%[^0-9a-zA-Z]%'
How can I include that the following characters are also considered not to be "special" on the where clause?
(,./;#:[]{}=-_+)(*^!`\|)
Basically I'd like to return bunch of cyrillic/nordic chars or any other funny characters.
Also what's the difference between select * from table where column LIKE '%[^0-9a-zA-Z]%'
and
select *
from table
where column NOT LIKE '%[0-9a-zA-Z]%'
To Re-iterate: I'd like to find something like this Dú instead of Dafao.
Thanks