What is inline view
-
Class object
-
Schema object
-
Both
-
None of the above
Reveal answer
Fill a bubble to check yourself
D
Correct answer
Explanation
An inline view is a subquery in the FROM clause with an alias. It's not a persistent database object (no DDL), not a class or schema object - it's a temporary, query-scoped result set.
AI explanation
An inline view is a subquery placed in the FROM clause of a SELECT statement to simplify or restructure a query. Unlike a stored database view, it is never saved in the data dictionary and has no existence outside that one query, so it is not a 'schema object' (nor a 'class object'). The correct answer is 'None of the above.'