PostgreSQL - Joins in PostgreSQL
Consider tables:
What is the output of:
employees(emp_id, name, dept_id)departments(dept_id, name)What is the output of:
SELECT * FROM employees NATURAL JOIN departments;?