Skip to content

Instantly share code, notes, and snippets.

@SushmaBaliza
Created October 7, 2018 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SushmaBaliza/f80ff3767bd105f467a3a504fb36e67d to your computer and use it in GitHub Desktop.
Save SushmaBaliza/f80ff3767bd105f467a3a504fb36e67d to your computer and use it in GitHub Desktop.
SELECT a.emp_id, a.emp_name, b.Department_name
FROM employees a
INNER JOIN Departments b
ON a.Dept_id = b.Dept_id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment