A view is registered with the following code:

Both users and orders are Delta Lake tables.
Which statement describes the results of querying recent_orders?
Show answer and explanation
Correct answer: D
A standard view stores query logic rather than materialized join results, so the filtering and join execute when recent_orders is queried. Delta Lake supplies a consistent snapshot of each source table for that query. The returned rows therefore come from the valid table versions at the time the query began, even if concurrent updates finish before it ends.


