Given a table with the following structure, which query will not return the lowest grade earned by any student?
CREATE TABLE Students (
StudentName varchar(50),
Grade int
);
Given a table with the following structure, which query will not return the lowest grade earned by any student?
CREATE TABLE Students (
StudentName varchar(50),
Grade int
);