Hello to Everyone.
I have two table, for example;
TABLE Name X
________________
| id | A |
|____|_________|
| 1 | 1,2,4,8 |
|____|_________|
This Query is working in another TABLE Y,
mysql_query(" Select * from Y where id IN(1,2,4,8) ")
But this in not working,
mysql_query(" Select * from Y where id IN(Select A from X where id=1) ")
What can I do? Thank You.