gpt4 book ai didi

php - 从数据库查询 php Codeigniter

转载 作者:行者123 更新时间:2023-11-29 20:58:49 24 4
gpt4 key购买 nike

在我的数据库表中,有一个名为 city_case 的字段,它接受诸如 ["3","4","5"] 之类的值。我无法查询案例是 3、5 或 4。

如何从该表中选择 city_case = 3,4 的所有数据?

function get_all()
{
$this->db->where('C.city_case',["4","5"]);
return $this->db->get('cases C')->result();
}

最佳答案

尝试使用or_where

function get_all()
{
$this->db->where('C.city_case =', 4);
$this->db->or_where('C.city_case =', 3);
}


//Produces: WHERE C.city_case = 4 OR C.city_case = 3

或者只是普通的查询方法

$query = $this->db->query('SELECT * FROM tbale_name WHERE C.city_case = 4 OR C.city_case = 3');
$result = $query->result_array();
return $result

关于php - 从数据库查询 php Codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37401072/

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