我有一个值
$id=10,12,4,45; //these are ids of all the products in product table
现在,我想显示(显示)此变量中给出的产品名称。
类似:
query="SELECT description from product where id ='$id' ";
如何做到这一点。 预先感谢...
答案 0 :(得分:2)
使用find_in_Set()
SELECT description from product where find_in_set(id,'$id')