I want to return the non-alpha numeric characters in my character fields in postgresql. Excluding spaces in the result as well. I want to be able to see only all non-alpha numeric characters in my result.
Example:
First Name | Last Name
ABC&DEF | GHIJ\
Result:
First Name | Last Name
& | \
How can I do this?