PostgreSQL - Joins in PostgreSQL
Given the tables:
What will this query return?
employees(id, name, dept_id)departments(id, dept_name)What will this query return?
SELECT e.name, d.dept_name FROM employees e INNER JOIN departments d ON e.dept_id = d.id;
