Page 1 of 1

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
by answerhappygod
As Part Of A Student Records Program A Team Needs A List Of All Students With At Least One Occurrence Of A Backlog Item 1
As Part Of A Student Records Program A Team Needs A List Of All Students With At Least One Occurrence Of A Backlog Item 1 (112.56 KiB) Viewed 88 times
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