mysql> SELECT \'a\'=\'b\'=\'c\'; +-------------+ | \'a\'=\'b\'=\'c\' | +-------------+ | 1 | +-------------+ mysql> select \'a\'=0, \'b\'=\'c\'; +---
I believe MySQL calls atoi() or something similar on the string 'a', which equals 0. What does select 'a'=1 give?
atoi()
'a'
select 'a'=1