CompTIA Tech+ FC0-U71 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?
CREATE student_name, grade FROM math_class
SELECT student_name, grade FROM math_class
SELECT * FROM students
UPDATE student_name, grade FROM math_class