Last active
October 7, 2018 16:43
-
-
Save SushmaBaliza/e6b1221f0cc01bcc3034df3d231fabf1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT a.Emp_id, a.Emp_name,a.Emp_Hire_date,b.Dept_name | |
FROM employees a | |
LEFT JOIN departments b | |
ON a.Dept_id=b.Dept_id | |
ORDER BY a.Emp_id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment