Created
October 14, 2021 19:30
-
-
Save vvgsrk/02434050448ac928a234d95821800f8d to your computer and use it in GitHub Desktop.
FULL 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 FULL 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