I'm trying to make a query and I don't understand why it doesn't work for me. I would appreciate it if someone could give me a hand
SELECT TEMA
FROM LIBRERIAS
WHERE TEMA LIKE '%IA';
This query does not return data even if it has data that matches such as "GEOMETRIA"
To eliminate space you can trim
TEMAand to include both upper case and lower case matches you can useupper()like below: