继承人样本表:
info table
info_id name
1 john
2 peter
------------------------
details table
details_id log date
1 test log for john 2013-08-01
1 another log for john 2013-08-02
2 test log for peter 2013-08-02
这是我的示例查询:
SELECT info.info_id, info.name, details.details_no, details.log, details.date
FROM info JOIN details ON details.details_id = info.info_id
GROUP BY info.info_id
这是我想要实现的显示:
john
1 test log for john 2013-08-01
1 another test log for john 2013-08-02
peter
2 test log for peter 213-08-02
我尝试过使用foreach循环,然后在第一个循环中执行另一个foreach循环。
请帮助伙伴
答案 0 :(得分:9)
尝试将结果制作成多维数组,如下所示
注意:我假设details.details_no
是details
表的主键,您希望结果类似于
john
1 test log for john 2013-08-01
2 another test log for john 2013-08-02
peter
3 test log for peter 213-08-02
您可以使用以下
检索...
$qry = "
SELECT
info.info_id,
info.name,
details.details_no,
details.log,
details.date
FROM
info
JOIN details ON (details.details_id = info.info_id)
";
$result = mysqli_query($your_db_link,$qry)
$data = array();
while($row = mysqli_fetch_array($result)){
$data[$row["info_id"]]["name"] = $row["name"];
$data[$row["info_id"]]["logs"][$row["details_no"]] = array(
"log"=>$row["log"],
"date"=>$row["date"],
);
}
会产生如下数组:
$data = array(
"1" => array(
"name" => "john",
"logs" => array(
"1" => array(
"log" => "test log for john",
"date" => "2013-08-01",
),
"2" => array(
"log" => "another test log for john",
"date" => "2013-08-02",
),
),
),
"2" => array(
"name" => "peter",
"logs" => array(
"3" => array(
"log" => "test log for peter",
"date" => "2013-08-02",
),
),
),
);
然后你可以显示如下:
echo "<table>";
foreach($data as $value){
echo "<tr><td colspan='3'>".$value["name"]."</td></tr>";
foreach($value["logs"] as $subkey => $subvalue){
echo "<tr>";
echo "<td>".$subkey."</td>";
echo "<td>".$subvalue["log"]."</td>";
echo "<td>".$subvalue["date"]."</td>";
echo "</tr>";
}
}
echo "</table>";
结果类似于:
<table>
<tr>
<td colspan='3'>john</td>
</tr>
<tr>
<td>1</td>
<td>test log for john</td>
<td>2013-08-01</td>
</tr>
<tr>
<td>2</td>
<td>another test log for john</td>
<td>2013-08-02</td>
</tr>
<tr>
<td colspan='3'>peter</td>
</tr>
<tr>
<td>3</td>
<td>test log for peter</td>
<td>2013-08-02</td>
</tr>
</table>
答案 1 :(得分:3)
您可能需要获取数据并制作所需的数组。
$data = array();
foreach ($result as $item) {
$key = $item['name']; // or $item['info_id']
if (!isset($data[$key])) {
$data[$key] = array();
}
$data[$key][] = $item;
}
// Build your table with the new $data array
修改强>
这只是一个例子。正如amaster507指出的那样,如果您的name
字段不是唯一的,则需要在唯一键上构建阵列。与此并无太大区别,因为您可能只需将$item['name']
的实例更改为$item['info_id']
。
答案 2 :(得分:0)
你试过一个带有键/值对的foreach吗? 你能告诉我们你的for循环吗?结果数组的print_r / var_dump将使某人更容易为您提供帮助。
foreach ($result as $key=>$value) {
print "Name Row\n";
for (each display row) {
那或Ascherer建议制作一个新的多维数组,这将使嵌套for循环变得不必要。
答案 3 :(得分:0)
好的,先解释一下这个问题。
当您使用GROUP BY
时,您不再将每个结果都作为一行获得,而是使用分组内容获得1行,也就是说,您可以使用{{1}例如,从john获取两个GROUP BY
单元格的连接之类的东西。
要执行您想要的操作,请移除log
以获取所有行,然后手动处理它们。
我建议你轻松完成这项工作,使用underscore.php,它有一个名为GROUP BY
的函数,它会返回一个按子像素分组的数组,基于这种情况,groupBy
列
它将使用类似的东西:
info_id
该分组数组将如下所示:
$array_with_all_the_rows = $query->fetchAll(); // Or whatever you use to get all rows in 1 array.
$grouped_array = __::groupBy($array_with_all_the_rows, 'info_id');
答案 4 :(得分:0)
要细化Ascherer的答案,在使用[]
语法将数据放入数组之前,无需声明数组。如果您使用的是array_push()
,则需要先将数组声明为变量。
使用MySQLi,您可以直接使用foreach()
迭代结果集对象,而无条件地使用info_id
值作为分组依据的键。
$sql = "SELECT info.info_id,
info.name,
details.log,
details.date
FROM info
JOIN details ON details.details_id = info.info_id
ORDER BY info.info_id";
$result = [];
foreach ($mysqli->query($sql) as $row) {
$data[$row['info_id']][] = $row;
}
使用PDO,您可以使用->fetchAll(PDO::FETCH_GROUP)创建相同的输出而无需手动循环。
在生成html标记时...
<table>
<?php foreach ($result as $groupId => $rows) { ?>
<tr>
<td colspan='3'><?php echo $rows[0]["name"]; ?></td>
</tr>
<?php foreach($rows as $row) { ?>
<tr>
<td><?php echo $groupId; ?></td>
<td><?php echo $row['log']; ?></td>
<td><?php echo $row['date']; ?></td>
</tr>
<?php } ?>
<?php } ?>
</table>