As part of a student records program, a team needs a list of all students with at least one occurrence of a backlog item
Posted: Fri Jul 01, 2022 5:51 am
As part of a student records program, a team needs a list of all students with at least one occurrence of a backlog item. The result should be in the following format: NAME • name is the name of a student whose id shows up in the backlog table at least once. Schema There are 2 tables: student, backlog. Name ID NAME Type Description INTEGER This is the student's ID. It is the primary key. This is the name of the student. STRING student Name backlog Type STUDENT_ID INTEGER This is the student's ID. SUBJECT_ID STRING This is the subject ID. Description