I am using the query
select * from wallet_transaction where id IN('12,13');
I got '12,13' from GROUP_CONCAT()
it gives this error
Truncated incorrect DOUBLE value: '12,13'
One solution i got is switching off the strict mode but i don't want to do this
what's the solution ?