Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

One of restrictions for SQL is that we can not apply a column function to another one. For example, you will get an error message

One of restrictions for SQL is that we can not apply a column function to another one. For example, you will get an error message when you execute the following statement.
select manager_id, max(sum(credit_limit))
from employees
group by manager_id
order by manager_id ;
Please select a working SQL:
Question 15 options:
select manager_id, max(credit_limit),sum(credit_limit)
from employees
WHERE max(creditlimit) IN (SELECT sum(creditlimit)
group by manager_id
order by manager_id ;
select manager_id, max(credit_limit),sum(credit_limit)
from employees
group by manager_id
HAVING max(creditlimit) IN (SELECT sum(creditlimit)
order by manager_id ;
select manager_id, max(credit_limit),sum(credit_limit)
from employees
group by manager_id
order by manager_id ;
select manager_id, max(credit_limit),sum(credit_limit)
from employees
group by manager_id
order by manager_id
WHERE max(creditlimit) IN (SELECT sum(creditlimit);

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions