Need a query that finds rows with a column string value that contains any character other than alphanumeric + specific character.
For example:
colName
_______
abc123"
acb231!
bca412++
.4!21
abc
123
I want to select all rows that contain any characters other than
- digits
0-9
- letters
a-z
(lower or upper case), - space
- backtick
- Any of the following additional characters
!$%[_-()
Resulting in:
abc123"
.4!21