Código SQL [-] select * from table where campo like '%cadena%';
select * from table where campo like '%cadena%';
Código SQL [-] select * from table where campo containing 'cadena';
select * from table where campo containing 'cadena';