How to check if any of this !@#$%^&*()_-+ special characters exist in a string ?
i tried
SELECT PATINDEX('!@#$%^&*()_-+', 'test-');  
SELECT PATINDEX('[!@#$%^&*()_-+]', 'test-');  
SELECT PATINDEX('%[!@#$%^&*()_-+]%', 'test-');  
but all returns 0, it should return 5, any help ?