Advertisement
yoshoo

Untitled

Aug 19th, 2019
1,383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT E.first_name, E.salary, D.department_name, L.state_province
  2. FROM Employees E JOIN departments D
  3. ON E.department_id = D.department_id
  4. Join Locations L
  5. ON D.location_id = L.location_id
  6. WHERE E.salary < 5000;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement