Combining ORDER BY and DISTINCT Without a transformation, a statement that contains both DISTINCT and ORDER BY would require two separate sorting steps-one to satisfy DISTINCT and one to satisfy ORDER BY. (Currently, uses sorting to evaluate DISTINCT. There are, in theory, other ways to accomplish this.) DISTINCTcombined with ORDER BY

In some situations, can transform the statement internally into one that contains only one of these keywords. The requirements are as follows:

A unique index is not required.

For example,

SELECT DISTINCT miles, meal FROM Flights ORDER BY meal

is transformed into

SELECT DISTINCT miles, meal FROM Flights

Note that these are not equivalent functions; this is simply an internal transformation.