gpt4 book ai didi

mysql - 不等于 codeigniter 中的条件不起作用

转载 作者:行者123 更新时间:2023-11-29 02:55:53 25 4
gpt4 key购买 nike

不等于条件在我的 codeigniter sql 查询中不起作用。我也尝试过 <> 但这也不起作用请有人帮助解决这个问题。输出以等于条件显示

 $result = $this->db->query("select a.user_email  from users as a, result as b where b.exam_id = '".$exam_id."' and a.user_id  != b.user_id  and  a.active =  1 and a.user_role_id != 1 group by a.user_id")
->result();

最佳答案

尝试使用它,因为编译器无法清楚地理解您的查询,这就是它给出错误输出的原因。

$query="select a.user_email  "
. "from users as a, result as b "
. "where b.exam_id = '".$exam_id."'"
."a.active = 1 and"
. "(a.user_id != b.user_id) "
. "and "
. "(a.user_role_id != 1 group by a.user_id)"

关于mysql - 不等于 codeigniter 中的条件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30659079/

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