here is structure of myTable
----------------
|id|info1|info2|
----------------
|0 |abcde|fghij|
|1 |qwert|yuopa|
----------------
here is the query I call :
SELECT * FROM `myTable` WHERE `id` = 'a'
and it returns the first row which is
|0 |abcde|fghij|
what is happening? normally id is an integer but, by mistake I typed it as a string but I still got a result.