1 つのテーブル (名前) からデータを選択しています。別のテーブルには、教師の名前があります。
表から自分のデータを選択するとき、各教師の名前の合計をどのように数えますか?
例:
$q = mysql_query("SELECT * FROM names ORDER BY limit 50");
while($row = mysql_fetch_array($q)){
$name = $row['name'];
$teacher $row['teacher'];
$total = ?????
echo "the name is $name and the teacher is $teacher (total number for this teacher is $total";
}
どうすればこれを達成できますか?