Answers for "how to find special characters in sql"

SQL
0

how to find special characters in sql

/* Select Special Charcters only*/
select col1
	from table_name
    	where col1 like '%[!@#$%^&*]%'; 
        
Note : You can add any special character in WHERE clause
Posted by: Guest on March-27-2022

Code answers related to "how to find special characters in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language