Solved

Consider the Registration Relation Shown in the Exhibit

Question 21

Multiple Choice

Consider the Registration relation shown in the exhibit. Which of the following SQL statements would return the Registration2 relation from the Registration relation? Consider the Registration relation shown in the exhibit. Which of the following SQL statements would return the Registration2 relation from the Registration relation?   A)  SELECT Course_Code FROM Registration; B)  SELECT * FROM Registration WHERE Registration_ID = 1003 AND Registration_ID = 1005; C)  SELECT * FROM Registration WHERE Course_Code = 'A4343'; D)  SELECT Registration_ID, Student_ID, First_Name, Last_Name


A) SELECT Course_Code FROM Registration;
B) SELECT * FROM Registration WHERE Registration_ID = 1003 AND Registration_ID = 1005;
C) SELECT * FROM Registration WHERE Course_Code = 'A4343';
D) SELECT Registration_ID, Student_ID, First_Name, Last_Name

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions