I am trying to write a query involving 2 tables. The table information is
1)student_application
-student_id
-first_name
-last_name
-title
2)grade
-grade_id
-student_id
-faculty_id
-grade
When student enters the application information it is saved in student_application table.
Than 4 faculty member grade that particular application for that particular student
Right now everything is inserting in the database.
My question is how to display student information with respective grades for all 4 faculty using php and mysql
The form structure and output should be like
first_name | title | faculty_1 | faculty_2 | faculty_3 | faculty_4
test | title | A | B+ | C | A-
I know I have to do join query. But i am new to it.
Please try your best to help me out