我试图找到一种方法将这两个表连接在一起,我能够做到,但如果找到多个匹配的值,它会再次显示产品表中的所有内容.现在我试图将MySQL group_concat一起使用,以便能够在数组中的一个字段中列出所有tName但是我一直在使用MysqL收到错误:
Error Number: 1064
You have an error in your sql Syntax; check the manual that corresponds to your MysqL server version for the right Syntax to use near ‘FROM (
sp_product
) LEFT OUTER JOINsp_product_type
ONsp_product_type
.`tCat’ at line 2SELECT
sp_product
.name
,sp_product
.price
,sp_product
.perm_name
,sp_product
.description
,GROUP_CONCAT(product_type.tName SEPARATOR FROM (sp_product
) LEFT OUTER JOINsp_product_type
ONsp_product_type
.tCategory
=sp_product
.type
WHEREperm_name
= ‘bacon’
$this->db->select('product.name,product.price,product.perm_name,product.description,GROUP_CONCAT(product_type.tName SEPARATOR ',') as product_type.tName');
$this->db->from('product');
$this->db->where('perm_name',$this->uri->segment(2));
$this->db->join('product_type','product_type.tCategory = product.type','LEFT OUTER');
$query = $this->db->get();
我有什么想法我做错了吗?
最佳答案
似乎报价不当引起问题.
原文链接:https://www.f2er.com/mysql/433407.html它应该是GROUP_CONCAT(product_type.tName SEPARATOR“,”)
试试以下:
$this->db->select('product.name,GROUP_CONCAT(product_type.tName SEPARATOR ",") as product_type.tName');
$this->db->from('product');
$this->db->where('perm_name',$this->uri->segment(2));
$this->db->join('product_type','LEFT OUTER');
$query = $this->db->get();