1. What is a key syntactic requirement of derived tables (subqueries in the FROM clause)?
- They must contain at least one aggregate function.
- They must be assigned a table alias.
- They cannot contain WHERE clauses.
- They must use DISTINCT.
Hint: Standard SQL requires every subquery in the FROM clause to have a unique table alias name so that its columns can be referenced.