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

Vælg Forespørgsel | Vælg Entires That Don't Start With a Number - MySQL

Prøv dette:

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

eller du skal tilføje NOT LIKE før hvert tal:

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


  1. Hvordan bruger man Spring Boot med MySQL-database og JPA?

  2. Java MySQL forberedt Statement Batch

  3. Løsning i mysql for delvist indeks eller filtreret indeks?

  4. MySql - Sequalize - Kan ikke tilføje fremmednøglebegrænsning