Skip to content

Instantly share code, notes, and snippets.

@sqlparser
Created March 25, 2014 09:22
Show Gist options
  • Save sqlparser/9757983 to your computer and use it in GitHub Desktop.
Save sqlparser/9757983 to your computer and use it in GitHub Desktop.
where clause demo code
SELECT e.employee_id,
d.location_id
FROM employees e,departments d
WHERE e.department_id = d.department_id AND
e.last_name = 'Matos';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment