I have the following table in MySQL:
Category.ID [ INT(1), UNSIGNED, NOT NULL, AUTO_INCREMENT ]
1
2
When I run the following query:
SELECT `ID` FROM `Category` WHERE `ID` = '1A';
It returns:
Category.ID
1
I'm running MySQL Ver 14.14 Distrib 5.7.15, for Linux (x86_64).
Can someone explain why MySQL is returning LIKE results, when = is defined?
Is this something than can be 'turned off' in my.cnf?
Thanks.