gpt4 book ai didi

activerecord - Codeigniter:从多个表中选择

转载 作者:行者123 更新时间:2023-12-04 03:09:35 25 4
gpt4 key购买 nike

如何从两个或多个表中选择行?

我正在为表单设置默认字段,并且我需要两个表中的值...

我当前的代码为:

    $this->CI->db->select('*');
$this->CI->db->from('user_profiles');
$this->CI->db->where('user_id' , $id);
$user = $this->CI->db->get();
$user = $user->row_array();
$this->CI->validation->set_default_value($user);

最佳答案

用户指南中的示例应对此进行说明:

$this->db->select('*'); // <-- There is never any reason to write this line!
$this->db->from('blogs');
$this->db->join('comments', 'comments.id = blogs.id');

$query = $this->db->get();

// Produces:
// SELECT * FROM blogs
// JOIN comments ON comments.id = blogs.id

在《用户指南》的 Active Record页面下查看全部内容。

关于activerecord - Codeigniter:从多个表中选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2774538/

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