I have a Query which returns comma separated integers like :
select GROUP_CONCAT(ids) from table2
now I want to use that result in another query like :
select * from table1 where column in (select GROUP_CONCAT(ids) from table2)
in this case it will consider only first value in IN clause.