SQL - INNER JOIN
Given tables
students (id, name) and grades (student_id, grade), what is the output of this query?
SELECT s.name, g.grade FROM students s INNER JOIN grades g ON s.id = g.student_id;
