Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como obter todas as linhas que contêm caracteres diferentes de [a-zA-Z] no MySQL


Corresponder a todo o texto
SELECT * 
FROM contact_info 
WHERE address NOT REGEXP '^[a-zA-Z0-9]*$';