gpt4 book ai didi

php - 使用 codeigniter 进行子查询

转载 作者:行者123 更新时间:2023-11-30 00:28:03 24 4
gpt4 key购买 nike

大家好,大家对子查询 i 有什么了解吗 n codeigniter这是我的查询,我想将其转换为 codeigniter

SELECT question . * 
FROM question
WHERE question.id NOT
IN ( SELECT id
FROM answers )

最佳答案

首先确保问题和答案之间的关系正确,因为您将问题 id 与答案表的 id 进行匹配,这很令人困惑,您也可以摆脱子查询并使用 join 代替

$this->db->select('q.*');
$this->db->from('question q');
$this->db->join('answers a','q.id=a.id','LEFT');/* make sure second parameter should match the question id from answer table */
$this->db->where('a.id IS NULL',null,FALSE);
$query = $this->db->get();

Active Record

关于php - 使用 codeigniter 进行子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22724236/

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