我試圖從我的數據庫中提取數據,並希望通過該標識在名爲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?請讓我知道,如果你想看到我的查詢。
處理PHP期間的循環。 –