sql >> Databáze >  >> RDS >> Mysql

vyhledávání mysql bez mezer

// id don't know the exact syntax, but this is what you are searching for I guess:

// replace spaces with nothin temporarily, then check equal (=) not like (%%) if name is exactly the same (except the spaces)

SELECT id, REPLACE(name, ' ', '') AS tmp FROM table WHERE tmp='%$name%'


  1. Proměnné MySql a php

  2. SQLAlchemy - stav počtu je pravdivý

  3. Jaká jsou omezení SQL a jejich různé typy?

  4. Jaká je definice sekundárního indexu v postgresql?