Multiple choice

Select can be used in FROM clause of SQL select.

  1. True

  2. False

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

A SELECT statement can indeed be used in the FROM clause of another SELECT statement. This creates an inline view or derived table, allowing the results of a subquery to be treated as a table source in the outer query. This is a fundamental SQL feature used for breaking complex queries into simpler, more readable components. The option claiming 'False' is incorrect.