Question: Question 1 The query that displays computer networks students : Not yet answered Marked out of 1.00 a. select full_name from students where Major_name =


Question 1 The query that displays computer networks students : Not yet answered Marked out of 1.00 a. select full_name from students where Major_name = 'computer networks"; O b. select full_name,major_id from students natural join majors where Major_name = 'computer networks'; O c. select full_name from students join majors using(students.major_id = majors.major_id) where Major_name = 'computer networks'; O d. select full_name from students where Major_id = 124; Flag question Question 2 to display all information about all students that have the same major asthe student amal ahmad, we use: Not yet answered Marked out of 1.00 a. select * from students where major_id='amal ahmad'); b. select * from employee where full_name ='amal ahmad' O c. select * from students where major_id=(select major_id from majors where full_name='amal ahmad'); O d. select * from students where major_id=(select major_id from students where full_name='amal ahmad'); P Flag
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
