Created
October 14, 2021 19:21
-
-
Save vvgsrk/917923f3308fc02e361f80c163b22ae4 to your computer and use it in GitHub Desktop.
LEFT OUTER JOIN
This file contains hidden or 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 e.last_name, e.department_id, d.department_name | |
FROM employees e LEFT OUTER JOIN departments d | |
ON (e.department_id = d.department_id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment