Hi.
I have a table full of names. I am trying to find all names that contain a non alphanumeric character, but I want to exclude spaces, dashes - , and ampersand &.
I am trying this:
However, I am getting names returned like:
JELD-WEN
GIANT STOP-N-GO OF NEW MEXICO
I would think these names would not be returned because they are no NON alpha numeric characters except for the -.
What am I doing wrong in my script?
Thanks!
I have a table full of names. I am trying to find all names that contain a non alphanumeric character, but I want to exclude spaces, dashes - , and ampersand &.
I am trying this:
Code:
select * from mytable
where name like '%[^a-zA-Z0-9 -&/]%'
However, I am getting names returned like:
JELD-WEN
GIANT STOP-N-GO OF NEW MEXICO
I would think these names would not be returned because they are no NON alpha numeric characters except for the -.
What am I doing wrong in my script?
Thanks!