SELECT * from user WHERE (lower(user_name) LIKE "%(bot)%" OR... |
4 years ago |
SELECT * from user WHERE (user_name LIKE "%(BOT)%" OR user_name LIKE... |
4 years ago |
SELECT * from user WHERE user_name LIKE "%(BOT)%" COLLATE utf8_general_ci; |
4 years ago |
SELECT * from user WHERE user_name LIKE "%(BOT)%"; |
4 years ago |