Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Some of the rows the GRADES table are below: CODE NAME GPA YEAR 9 3 8 ALEX 3 . 1 2 9 3 1 MICHELLE

Some of the rows the GRADES table are below:
CODE
NAME
GPA
YEAR
938
ALEX
3.1
2
931
MICHELLE
2.3
1
182
JOE
3.1
3
918
ADELE
2.9
2
Which of the following queries returns the name of all the students that achieved the maximum GPA among all the students?
Group of answer choices
SELECT NAME FROM STUDENT
WHERE GPA =(SELECT MAX(GPA) FROM STUDENT)
SELECT NAME, MAX(GPA)
FROM STUDENT
SELECT * FROM STUDENT
WHERE GPA = MAX(GPA)
SELECT MAX(GPA) FROM STUDENT
WHERE (SELECT NAME FROM STUDENT WHERE GPA = MAX(GPA))

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions