Skip to content

Instantly share code, notes, and snippets.

@vvgsrk
Created October 18, 2021 19:58
Show Gist options
  • Save vvgsrk/294b60ad36d2d509768e5e5b2b09801a to your computer and use it in GitHub Desktop.
Save vvgsrk/294b60ad36d2d509768e5e5b2b09801a to your computer and use it in GitHub Desktop.
USING Keyword
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