SQL - Advanced Joins
Given two tables:
What will be the result of this query?
Employees(emp_id, name, dept_id)Departments(dept_id, dept_name, location)What will be the result of this query?
SELECT emp_id, name, dept_name FROM Employees NATURAL JOIN Departments;
