hi all,
i am doing a complicated query.
it uses "IN" keyword.
e.g
select * from product where
product_no IN ('1','2',....)
of cos that simple ('1','2',...)
acutally it querys anothers table.
select * from product where
product_no IN (select product_no from seller)
it works when i use ('1','2',...) but not when use (select product_no from seller)
my question is how to convert (select product_no from seller) to ('1','2',...)
in php?
Alex