gpt4 book ai didi

php - 将查询转换为 Codeigniter 格式

转载 作者:行者123 更新时间:2023-11-29 07:59:06 24 4
gpt4 key购买 nike

我有一个疑问

SELECT        l.id,l.name,l.city,l.email,l.phone,l.status,l.source,l.leadCreatedTime,l.organizationId
FROM (
SELECT id
FROM leads
where removed='0'
ORDER BY
id
LIMIT 40000
) o
JOIN leads l
ON l.id = o.id
ORDER BY
l.id

我想将此查询转换为 Codeigniter 格式,例如

$this->db->select('l.id,l.name,l.city,l.email,l.phone,l.status,l.source,l.leadCreatedTime,l.organizationId');
$this->db->from('leads');

我在查询的第 8 行遇到问题,其中获取的数据被定义为 o 我该如何在 CI 中编写该数据

最佳答案

你可以测试我的代码吗,它可能对你有帮助,因为它是codeigniter格式

$this->db- >select('l.id,l.name,l.city,l.email,l.phone,l.status,l.source,l.leadCreatedTime,l.organizationId');
$this->db->from('(SELECT id FROM leads where removed="0" ORDER BY id LIMIT 40000) o');
$this->db->join('leads l', 'l.id = o.id');
$this->db->order_by('l.id');
$result=$this->db->get();
$show=$result->result_array();

它在子查询中不是完全的 codeigniter 格式,但它可以帮助您。

享受代码。

关于php - 将查询转换为 Codeigniter 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24365971/

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