Advertisement
yoshoo

Untitled

Aug 19th, 2019
1,392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT J.employee_id, J.job_id, E.last_name, E.salary
  2. FROM Job_history J join Employees E
  3. ON J.employee_id = E.employee_id
  4. WHERE E.salary BETWEEN 5000 AND 8000;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement