次の SQL クエリを使用して、すべてのレコードを取得できます。
SELECT
s.id Student_ID,
s.name Student_Name,
c.name Course_Name,
a.attStatus Attendance_Status,
a.attDate Attendance_Date
FROM students s
INNER JOIN attendance a ON (s.id=a.studID)
INNER JOIN courses c ON (a.courseID=c.id)
ORDER BY a.attDate ASC
編集:
学生が 1 日に複数のコースに参加できるかどうかについてあなたは言わなかったので、できると思います。
PHP 側では、次のようにします。
$dates=array();
$students=array();
while($row=mysqli_fetch_assoc($result))
{
if(!in_array($dates[$row["Attendance_Date"]])) $dates[]=$row["Attendance_Date"];
if(empty($students[$row["Student_ID"]]))
$students[$row["Student_ID"]]=array("name"=>$row["Student_Name"]);
if(empty($students[$row["Student_ID"]][$row["Attendance_Date"]])
$students[$row["Student_ID"]][$row["Attendance_Date"]]=array();
$students[$row["Student_ID"]][$row["Attendance_Date"]][$row["Course_Name"]]=$row["Attendance_Status"];
}
したがって、ループが終了すると、次のような$students
配列になる可能性があります。
Array(2) =>
{
123 =>
{
"name"=>"Einstein",
"2012-08-01"=>
{
"Math"=>"present",
"Phys"=>"absent"
}
"2012-08-02"=>
{
"Liter"=>"absent",
"Music"=>"present"
}
}
456 =>
{
"name"=>"Heisenberg",
"2012-08-01"=>
{
"Math"=>"absent",
"Phys"=>"present"
}
}
}
そして、すべての日付が$dates
配列されています。次にforeach
、$dates
配列を使用して最初の行を描画し、次にforeach($students){foreach($dates){}}
すべての行を描画できます。