Given a table with the following structure, which query returns all student names with the highest grade?
CREATE TABLE Students (
StudentName varchar(50),
Grade int );
Given a table with the following structure, which query returns all student names with the highest grade?
CREATE TABLE Students (
StudentName varchar(50),
Grade int );