gpt4 book ai didi

php - 使用 codeigniter 通过 OR 进行内连接

转载 作者:行者123 更新时间:2023-11-29 19:15:14 25 4
gpt4 key购买 nike

我想将表 a 联接到表 b 或表 c

我有数据库

table a
id
email

table b
id
name
admin

table c
id
name
user
//ilustration
table b.id = 01-admin
table c.id = 01-user

如果表a.id = 01-user,我可以从表c获取数据并且数据将在表 a 上循环

我尝试示例

$this->db->select('*');
$this->db->from('a');
$this->db->join('b', 'a.id = b.id');
//OR

$this->db->join('c', 'a.id = c.id');
$query = $this->db->get();
return $query;

请帮助我,
如何编写带有条件 OR 的 JOIN 代码

最佳答案

可能使用左外连接:

$this->db->select('*');
$this->db->from('a');
$this->db->join('b', 'a.id = b.id', 'LEFT OUTER');
$this->db->join('c', 'a.id = c.id' 'LEFT OUTER');
$query = $this->db->get();
return $query;

只有匹配时,您才会从 B 或 C 获得东西。

关于php - 使用 codeigniter 通过 OR 进行内连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42764197/

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