Computer Science, asked by jupudivijaya60, 7 months ago

The question is stated as there is a database on professors, departments, courses and schedules. Need to write a query that returns the names of all the professors and their respective courses. Each row must contain the name of the professor followed by the name of the course that the professor teaches. There must be no duplicates in terms of the rows. The schema I have, in terms of the table name and the fields: PROFESSOR: ID, NAME, DEPARTMENT_ID, SALARY DEPARTMENT: ID, NAME COURSE: ID, NAME, DEPARTMENT_ID, CREDITS SCHEDULE: PROFESSOR_ID,

Answers

Answered by Anonymous
3

Answer:

The question is stated as there is a database on professors, departments, courses and schedules. Need to write a query that returns the names of all the professors and their respective courses. Each row must contain the name of the professor followed by the name of the course that the professor teaches. There must be no duplicates in terms of the rows.

The schema I have, in terms of the table name and the fields:

PROFESSOR: ID, NAME, DEPARTMENT_ID,

Similar questions