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

Come posso interrogare i campi contenenti un determinato testo in MySQL?

SELECT ... WHERE stuff LIKE 'itunes%';

Qui % funge da carattere jolly, quindi corrisponderebbe alle righe con stuff campo uguale a uno qualsiasi di itunes , itunesfoo , itunes1 , ...

Ulteriori informazioni:Operatore SQL LIKE alle W3Schools .