Question: Question 9 Query that displays all courses after c++ (level 1): Not yet answered Marked out of 1.00 a. select * from courses where course_level


Question 9 Query that displays all courses after c++ (level 1): Not yet answered Marked out of 1.00 a. select * from courses where course_level > (select course_name from courses where course_level = 1); O b. select * from courses where course_level >(select course_level from courses where course_name = 'c++'); c. select * from courses where course_level > any (select course_name from courses where course_level = 1); d. select * from courses where course_level in (select course_level from courses where course_name = 'c+ +'); P Flag question Question 10 Which of the following statements will display all Female student names, such that older students appears first? Not yet answered Marked out of 1.00 a. Select full_name from students where gender='F' order by bd; O b.Select full_name from students where gender ='F' order by bd desc c. Select full_name from students where gender ='M' order by bd; O d. Select full_name from students where gender ='M' order by bd desc; C. Flag
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
