CompTIA ITF+ FC0-U61 Practice Question
In a school database, a teacher wants to see all the student names and their corresponding grades from a 'Math' class. Which statement would most effectively provide this information?
UPDATE student_name, grade FROM math_class
SELECT student_name, grade FROM math_class
SELECT * FROM students
CREATE student_name, grade FROM math_class