0

我需要按如下方式加入两个表 - 表 1 'price_1'、'price_2' 和 'price_3' 上的表 2 'value',这样我就可以输出价格标签而不是价格值。不知道如何在 codeigniter 中解决这个问题。我是否使用加入然后嵌套的选择?:

表格1

id  |   price_1   |   price_2  |  price_3
1   |     6       |      5     |     4

表 2

 id | label | value
1   |  £6.50 | 6
2   |  £2.50 | 5
3   |  £4.00 | 4

任何指针将不胜感激。

4

2 回答 2

0

感谢您的指点,但这样做是基于Codeigniter Join with Multiple Conditions

$this->db->select('p1.label as pa_1, p2.label as pa_2, p3.label as pa_3, p4.label as pa_4, p5.label as pa_5');
$this->db->from('table1');
$this->db->join('table2 as p1', 'p1.value = price_1', 'left');
$this->db->join('table2 as p2', 'p2.value = price_2', 'left');
$this->db->join('table2 as p3', 'p3.value = price_3', 'left');
$query = $this->db->get();

谢谢,丹

于 2013-07-07T18:17:13.863 回答
0

您可以先从表 1 中进行选择。然后:-

$tags = array();
foreach($record_from_table1 as $record)
{
   $tags[] = $record['price1'];
   $tags[] = $record['price2']; 
   $tags[] = $record['price3'];
}

然后制作 array_unique($tags)

从表 2 中进行选择查询并获取相应的标签值并回显它们。

于 2013-07-06T12:57:29.373 回答