Multiple choice technology databases

Which type of view is implemented as a subquery embedded in the FROM clause of a SELECT statement and is identified by an alias?

  1. Simple

  2. Inline

  3. Complex

  4. Nested

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

An inline view is a subquery placed in the FROM clause of a SELECT statement and given an alias. It's treated like a table within the query. This is standard SQL terminology for this pattern.