I'm working with a query system, and I would like, for example: If I look for the "a" value, it would return all the rows that have "a". I tried using the like command, as shown below:
SELECT * FROM usuario WHERE nome LIKE 'a%';
But it only returns me if the value is at the beginning of the line. How can I check if "a" is contained in the line?