PHP CI 框架 ,MySQL 数据查询 问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP CI 框架 ,MySQL 数据查询 问题相关的知识,希望对你有一定的参考价值。

产品类别表 pro_type 、 artist表中的作者(name) ,急急急,怎么实现、 pro_type表 中的类别(type),产品作者表 artist , 产品表 product ,现在查询连接 三张表 实现 取得product中的所有字段 ,求大侠帮忙啊 现在有三张表 , product表中 有 cid pid 俩个字段 分别对应 pro_type表 中的类别(type)id 和 artist表中的作者(name) id

参考技术A $this->db->select('product.*, pro_type.type, artist.name');
$this->db->from('product');
$this->db->join('pro_type', 'product.cid=pro_type.typeId');
$this->db->join('artist', 'product.pid=artist.nameId');
$this->db->where('......');
$query = $this->db->get();
$result = $query->result_array();
.......
具体字段不是很了解
试试看吧

以上是关于PHP CI 框架 ,MySQL 数据查询 问题的主要内容,如果未能解决你的问题,请参考以下文章

004.CI4框架CodeIgniter, 配置mysql数据库,并进行数据库查询

PHP的CI框架流程基本熟悉

015.CI4框架CodeIgniter数据库操作之:带参数查询数

CI框架 -- 核心文件 之 Input.php(输入数据处理文件)

使用插入查询 CI PHP Mysql Ajax

CI框架