I'm working on a Migration Script wherein I need to extract all client address. The address is only allowed to contain the following characters a-z 0-9 A-Z and special characters ' ( ) + , - . : and the rest should be replaced with white space.
I need to perform a Select Query wherein I need to get all the address that has other characters present except the allowed characters
Select address from client_info where address like '%`~!@#$%^&*_{}[]<>?/%'
the idea is something like that