I noticed something weird -- MySQL is returning two different data sets when I do a query with WHERE field=1
and with WHERE field='1'
.
The field
is defined as enum('0', '1', '2').
How is it possible that I get different data sets?
For the first query I get roughly 500 records. For the second I get 19 (!!!).
I can't explain it. Any ideas?
Thanks, Boda Cydo.