PostgreSQL - Joins in PostgreSQL
Given two tables:
What will be the result of this query?
students(id, name, class)enrollments(id, class, grade)What will be the result of this query?
SELECT * FROM students NATURAL JOIN enrollments;
