Mysql
 sql >> Database >  >> RDS >> Mysql

Come ottenere record che contengono caratteri alfanumerici + spazi bianchi

SELECT *
FROM table
WHERE name REGEXP '^[a-zA-Z0-9 ]+$' AND name REGEXP '[0-9]'

Più semplice:

SELECT *
FROM table
WHERE name REGEXP '^[a-zA-Z0-9 ]*[0-9][a-zA-Z0-9 ]*$'