Multiple choice technology databases

Which best describes an inline view?

  1. A Schema Object

  2. A subquery that can contain an ORDER BY clause

  3. Another name for a view that contains group functions

  4. A subquery that is part of the FROM clause of another query

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

An inline view is a subquery that appears in the FROM clause of a SELECT statement and is treated as a table during query execution. It is not a schema object (that's a regular view), can contain ORDER BY, and is not specifically related to group functions.