4
I am working with a query system, and I would like that, for example: If I look for the value "a", it returns me all the lines that have "a". I tried to use the command like, 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?
Would not be
'%a%
?– user28595