Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wählen Sie Abfrage | Wählen Sie Einträge aus, die nicht mit einer Zahl beginnen – MySQL

Versuchen Sie Folgendes:

SELECT DISTINCT name, location FROM object
       WHERE substring(location, 1, 1)
                  NOT IN ('1','2','3','4','5','6','7','8','9');

oder Sie müssen NOT LIKE hinzufügen vor jeder Zahl:

SELECT DISTINCT name, location FROM object
       WHERE location NOT LIKE '1%'
          OR location NOT LIKE '2%'
          ...