PostgreSQL - Joins in PostgreSQL
Given two tables:
What will be the result of this query?
students(id, name)grades(student_id, score)What will be the result of this query?
SELECT students.name, grades.score FROM students JOIN grades ON students.id = grades.student_id;
