Mysql dynamic query
Posted
by pradeep
on Stack Overflow
See other posts from Stack Overflow
or by pradeep
Published on 2010-03-29T12:10:36Z
Indexed on
2010/03/29
12:13 UTC
Read the original article
Hit count: 170
mysql
I have two table in mysql one tbl_a which has one int column id, second tbl_b which has one column song_ids in which data stored seapated by comma like 1,2,3,4
i want to select all id like this
select * from tbl_a where id in (select song_id from tbl_b) but its giving me no record as its varchar HOW to do it in mysql
© Stack Overflow or respective owner