adplus-dvertising
frame-decoration

Question

In the query given below which one of the following is a temporary relation?
WITH max_budget (VALUE) AS
(SELECT MAX(budget)
FROM department)
SELECT budget
FROM department, max_budget
WHERE department.budget = MAX budget.value;

a.

Budget

b.

Department

c.

Value

d.

Max_budget

Answer: (d).Max_budget

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. In the query given below which one of the following is a temporary relation?