gpt4 book ai didi

php - 从特定类别 codeigniter 中选择产品

转载 作者:行者123 更新时间:2023-11-29 05:57:54 24 4
gpt4 key购买 nike

产品有以下类别

product_id   category_id
2 1,2
3 1,3
4 1,13
2 2,5

我想选择特定类别的产品,例如类别 2 的所有产品。sql 语法是什么

最佳答案

您可以使用 FIND_IN_SET 以逗号分隔值进行搜索。

 $this->db->where("FIND_IN_SET( '$category_id' , category_ids) "); 

所以你的整个查询就像

$this->db->select();
$this->db->from('table_name');
$this->db->where("FIND_IN_SET( '$category_id' , category_ids) ");
$query = $this->db->get();
return $query->result();

关于php - 从特定类别 codeigniter 中选择产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47667368/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com