2 つのテーブルがあり、1 つは登録済みの学生を格納するテーブルで、これをstudents_registerと呼びます。2 番目のテーブルには、学生の試験の詳細が保持されます。exam_detailsと呼びましょう。students_register テーブルに、以下を保存します。
student registration number
first name
last name
email_address
date_of_birth
およびその他の詳細。
Exam_details テーブルに、登録番号と学生の成績をさまざまな科目に格納します。
ここでの課題は、exam_detailsテーブルにクエリを実行してテーブルにデータを表示することですが、学生の登録番号を表示する代わりに、exam_details テーブルの登録番号を students_register テーブルの登録番号に関連付けたいと考えています。登録番号の代わりに学生の名前を表示します。
これについてどうすればいいですか?
1. students_register テーブル
id reg_number first_name last_name email_address dob
1 P2894 John Smith john@example.com 12/05/1990
2. 検査詳細表
id reg_number english maths chemistry biology physics
1 P2894 60% 80% 50% 72% 64%
このデータを表に表示するにはどうすればよいですか
first_name last_name english maths chemistry biology physics
John Smith 60% 80% 50% 72% 64%