使用逗号分隔值(csv)搜索

时间:2019-02-25 16:13:57

标签: php mysqli

我尝试使用逗号分隔值进行搜索,但无法正常工作,我在下面尝试了此查询。

$item = 'Apple,Orange';
$itemqry=mysqli_query($link,"SELECT ItemRef_ListID WHERE find_in_set('".$item."',ItemRef_ListID) <> 0    ");
    while($activepricerow=mysqli_fetch_assoc($itemqry)){
       $ItemRef_ListID=$activepricerow["ItemRef_ListID"];
 }

我的数据库中有

    ID | ItemRef_ListID
     1 |   Apple
     2 |   Orange
     3 |   Banana

输出应为 苹果 橙色

0 个答案:

没有答案