Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

(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);

image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Upgrading Oracle Databases Oracle Database New Features

Authors: Charles Kim, Gary Gordhamer, Sean Scott

1st Edition

B0BL12WFP6, 979-8359657501

More Books

Students also viewed these Databases questions

Question

How are passive investments classified for accounting purposes?

Answered: 1 week ago