Combining operatorsIt is often possible to improve overall performance by anticipating how an operator's output will be used. Sort, Project, and UniqueQuery
select distinct a, b, c
from ...
order by a, b, c
Execution Plan
Unique(
Project(
Sort(...,
|