sql >> Base de Datos >  >> RDS >> Mysql

SELECCIONE el campo MySQL que contiene una subcadena

Está buscando el LIKE operador

Algo como

SELECT  keyword 
FROM    table 
WHERE   ('Tell me about admission info' LIKE CONCAT('%', keyword, '%'))

DEMOSTRACIÓN de SQL Fiddle