I have a table with id, date, time, user, channel, message and I'm trying to get records based on a username using:
SELECT * FROM log WHERE user LIKE '%dog%'
I have at least one user called Dogge#2252, and the query does not return anything. Am I using LIKE wrong or how do I fix this issue?
To complicate thing further, using
SELECT * FROM log WHERE user LIKE '%admin%'
does return the Dogge#2252 user.