In MySQL how to create a select that looks for words "together". For example:
SELECT pessoa FROM tabela
WHERE pessoa like '%josedasilva%'
But this way it does not return anything. Because it is registered as "José da Silva". I would like you to return more records, covering a broader survey, that is, not so specific.
The search is done through a html field via php.