Created
October 14, 2021 18:48
-
-
Save vvgsrk/8e8ad218a5860adfd0377fde256b6ba5 to your computer and use it in GitHub Desktop.
Non-Inner/Equal 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.salary, j.grade | |
FROM employees e, job_grades j | |
WHERE e.salary BETWEEN j.lowest_sal AND j.highest_sal; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment