Multiple choice technology databases

Which is correct about an inline view

  1. It is query with alias name

  2. It is subquery with alias name

  3. Both

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

An inline view is a subquery in the FROM clause that has a correlation name (alias). It acts like a temporary table within the query scope, unlike a regular view which is a stored schema object.