What query produces the same results as the one below? style=”color:rgb(45,54,57);”>SELECT Student.StdNo, Student.StdFirstName, Student.StdLastName, Student.StdMajorFROM StudentWHERE EXISTS(SELECT * FROM Enrollment WHERE Enrollment.StdNo = Student.StdNo) possible answersa. SELECT Student.StdNo, Student.StdFirstName, Student.StdLastName, Student.StdMajorFROM Student, EnrollmentWHERE Enrollment.StdNo = Student.StdNob. SELECT Student.StdNo, Student.StdFirstName, Student.StdLastName, Student.StdMajorFROM StudentWHERE StdNo IN(SELECT DISTINCT StdNo FROM Enrollment)c. SELECT Student.StdNo, Student.StdFirstName, Student.StdLastName, Student.StdMajorFROM StudentLEFT OUTER JOIN Enrollment ON Enrollment.StdNo = Student.StdNoWHERE Enrollment.StdNo IS NOT NULLD. All of the above
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"
https://academicheroes.com/wp-content/uploads/2020/12/logo.png00Hannah Wanguihttps://academicheroes.com/wp-content/uploads/2020/12/logo.pngHannah Wangui2019-09-16 22:35:392019-09-16 22:35:50What query produces the same results as the one below?