Engineering Questions with Answers - Multiple Choice Questions

Database MCQ – Aggregate Functions and Nested Subqueries – 2

1 - Question

SELECT dept_name, ID, avg (salary)
FROM instructor
GROUP BY dept_name;
This statement IS erroneous because
a) Avg(salary) should not be selected
b) Dept_id should not be used in group by clause
c) Misplaced group by clause
d) Group by clause is not valid in this query

View Answer

Answer: b
Explanation: Any attribute that is not present in the group by clause must appear only inside an aggregate function if it appears in the select clause, otherwise the query is treated as erroneous.




2 - Question

SQL applies predicates in the _______ clause after groups have been formed, so aggregate functions may be used.
a) Group by
b) With
c) Where
d) Having

View Answer

Answer: b
Explanation: The with clause provides away of defining a temporary relation whose definition is available only to the query in which the with clause occurs.




3 - Question

Aggregate functions can be used in the select list or the_______clause of a select statement or subquery. They cannot be used in a ______ clause.
a) Where, having
b) Having, where
c) Group by, having
d) Group by, where

View Answer

Answer: b
Explanation: To include aggregate functions having clause must be included after where.




4 - Question

The ________ keyword is used to access attributes of preceding tables or subqueries in the from clause.
a) In
b) Lateral
c) Having
d) With

View Answer

Answer: b
Explanation:
Eg : SELECT name, salary, avg salary
FROM instructor I1, lateral (SELECT avg(salary) AS avg salary
FROM instructor I2
WHERE I2.dept name= I1.dept name);
Without the lateral clause, the subquery cannot access the correlation variable
I1 from the outer query.




5 - Question

Which of the following creates a temporary relation for the query on which it is defined?
a) With
b) From
c) Where
d) Select

View Answer

Answer: a
Explanation: The with clause provides a way of defining a temporary relation whose definition is available only to the query in which the with clause occurs.




6 - Question

WITH max_budget (VALUE) AS
(SELECT MAX(budget)
FROM department)
SELECT budget
FROM department, max_budget
WHERE department.budget = MAX budget.value;
In the query given above which one of the following is a temporary relation?
a) Budget
b) Department
c) Value
d) Max_budget

View Answer

Answer: d
Explanation: With clause creates a temporary relation.




7 - Question

Subqueries cannot:
a) Use group by or group functions
b) Retrieve data from a table different from the one in the outer query
c) Join tables
d) Appear in select, update, delete, insert statements.

View Answer

Answer: c
Explanation: None.




8 - Question

Which of the following is not an aggregate function?
a) Avg
b) Sum
c) With
d) Min

View Answer

Answer: c
Explanation: With is used to create temporary relation and its not an aggregate function.




9 - Question

The EXISTS keyword will be true if:
a) Any row in the subquery meets the condition only
b) All rows in the subquery fail the condition only
c) Both of these two conditions are met
d) Neither of these two conditions is met

View Answer

Answer: a
Explanation: EXISTS keyword checks for existance of a condition.




10 - Question

How can you find rows that do not match some specified condition?
a) EXISTS
b) Double use of NOT EXISTS
c) NOT EXISTS
d) None of the mentioned

View Answer

Answer: b
Explanation: None.

Get weekly updates about new MCQs and other posts by joining 18000+ community of active learners