gpt4 book ai didi

mysql - 加入查询在 MySQL 中触发错误结果集

转载 作者:行者123 更新时间:2023-12-01 00:17:20 24 4
gpt4 key购买 nike

我有一个名为 tbl_documents 的表,它记录了文档的一些详细信息,例如 doc_nobranch_nodoc_name日期

我在我的函数中包含了以下行以获取 tbl_documents 表的所有字段。

...

$this->db->select('*')
->from('tbl_documents')
->where('status', 1, '', FALSE);

...

该函数运行良好并生成了正确的输出。而tbl_documents表中的branch_notbl_branch表中的branch_no相关。它还包含另一个字段 branch_names,例如:Admin、Accounts、IT 等。

如果我使用以下代码获取所需输出的分支名称,它会引发错误。

 $this->db->select('*')
->from('tbl_documents')
->join('tbl_branch', 'tbl_branch.branch_id=tbl_documents.branch_id', 'left')
->where('status', 1, '', FALSE);

可能出了什么问题?谁能帮帮我?

最佳答案

这可能对你有帮助:

    $this->db->select('*')
->from('tbl_documents')
->join('tbl_branch', 'tbl_branch.branch_id=tbl_documents.branch_id', 'left')
->where('status', 1, '', FALSE);
return $this->db->get()->result_array();

关于mysql - 加入查询在 MySQL 中触发错误结果集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53679730/

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