in mysql:
select 'a' = 'a ';
return 1
You're not the first to find this frustrating. In this case, use LIKE for literal string comparison:
LIKE
SELECT 'a' LIKE 'a '; //returns 0
1.4m articles
1.4m replys
5 comments
57.0k users