Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which SQL query retrieves the current salary of an employee with emp_no = 20005?
emp_no = 20005
SELECT salary FROM employees WHERE emp_no = 20005;
SELECT salary FROM salaries WHERE emp_no = 20005;
SELECT salary FROM salaries WHERE emp_no = 20005 AND to_date = '9999-01-01';
SELECT salary FROM dept_emp WHERE emp_no = 20005;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!