I need to fetch the values of a column if it contains special characters other than alphanumeric.
Ex: select name from data;
name
ACD12
A12DD
A_C12
A@CD
AB_M1
123AB
I need to write a regular expression to fetch the following data from the above table:
A_C12
A@CD
AB_M1