我正在尝试从我的数据库中获取数据,并希望按该 ID 对名为 order_ids 的列中的常用值进行分组。
这是我目前获取数据的状态
Order_Id | Product Name
-------------------------------
10001 | iPhone 5
10001 | Blackberry 9900
10002 | Galaxy S
10003 | Rhyme
10004 | Google Nexus
10005 | Razr
10006 | iPad Air
这就是我想要进入的状态
Order_Id | Product Name
-------------------------------
10001 | iPhone 5
Blackberry 9900
10002 | Galaxy S
10003 | Rhyme
10004 | Google Nexus
10005 | Razr
10006 | iPad Air
这是我在控制器文件中获得结果的方式
foreach($results_query as $results_custom) {
$this->data['result_custom'][] = array(
'model' => $results_custom['product_name'],
'order_number' => $results_custom['order_id']
);
}
这是我在视图文件中显示它的方式
<?php foreach ($results_custom as $result) { ?>
<li><?php echo $result['model']; ?></li> <br />
<li><?php echo $result['order_number']; ?></li><br />
<?php } ?>
是否可以通过使用 SQL 或 PHP 让我的数据以这种方式或在那种状态下显示?如果您也想查看我的查询,请告诉我。