Created
October 14, 2021 19:27
-
-
Save vvgsrk/589957bb22f832c830f28f1df0081fe2 to your computer and use it in GitHub Desktop.
RIGHT 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 RIGHT 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