I have a table with following data
Table transactions
trasaction_id
886
456
654_asd
898_ASDF
If I use these sentence
SELECT trasaction_id from transactions where transaction_id IN (886,654)
I expect the result be 886
,
But mysql is returning 886,654_ASDF
Why is 654_ASDF
returned in that query?