Skip to content

Instantly share code, notes, and snippets.

@SushmaBaliza
Created October 7, 2018 16:48
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/7ac0a3434eb14d5fc7c13779b38aa9f5 to your computer and use it in GitHub Desktop.
Save SushmaBaliza/7ac0a3434eb14d5fc7c13779b38aa9f5 to your computer and use it in GitHub Desktop.
SELECT a.Emp_id, a.Emp_name,a.Emp_Hire_date,b.Dept_name
FROM Employees a
LEFT OUTER 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