Solving solution! Can I get Your opinion?

Is a suitable command

FIND department_id, MAX(SALARY)
OUT OF employees; Legitimate or False

So as to display this name from the employee using the minimum income, which with the following query ought to be used.

FIND first_name, last_name
OUT OF employees:

FIND first_name, last_name
OUT OF employees
EXACTLY WHERE salary =MIN(SALARY);

FIND first_name, last_name
OUT OF employees
EXACTLY WHERE salary =(SELECT MIN(salary) VIA employees);

Homework:examine your syllabus…

Leave a Reply