如何从逗号分隔的值mysql php中选择和获取

时间:2019-03-19 10:17:45

标签: php mysql sql

我有一个值

$id=10,12,4,45; //these are ids of all the products in product table

现在,我想显示(显示)此变量中给出的产品名称。

类似:

query="SELECT description from product where id ='$id' ";

如何做到这一点。 预先感谢...

1 个答案:

答案 0 :(得分:2)

使用find_in_Set()

SELECT description from product where find_in_set(id,'$id')