Created
October 18, 2021 19:58
-
-
Save vvgsrk/294b60ad36d2d509768e5e5b2b09801a to your computer and use it in GitHub Desktop.
USING Keyword
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.employee_id, e.last_name, d.location_id | |
FROM employees e JOIN departments d | |
USING (department_id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment