Question
(USING ORACLE APEX) Question 1. Select the lowest salary, the most recent hire date, the last name of the person who is at the top
(USING ORACLE APEX)
Question 1. Select the lowest salary, the most recent hire date, the last name of the person who is at the top of an alphabetical list of employees, and the last name of the person who is at the bottom of an alphabetical list of employees. Select only employees who are in departments 50 or 60.
(I tried this SQL query for the above question but it still giving me an error)
SELECT MIN(salary) AS lowest_salary, MAX(hire_date) AS most_recent_hire_date, (SELECT last_name FROM employees WHERE department_id IN (50, 60) ORDER BY last_name ASC FETCH FIRST 1 ROWS ONLY) AS first_employee, (SELECT last_name FROM employees WHERE department_id IN (50, 60) ORDER BY last_name DESC FETCH FIRST 1 ROWS ONLY) AS last_employee FROM employees WHERE department_id IN (50, 60);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started