Sorting Data
Learn how to sort using the ORDER BY clause.
We'll cover the following...
Revisiting report 1
Let’s revisit the part where we created a report listing salespersons. Here is what we did:
Press + to interact
SELECT DISTINCT SalesPersonFROM SalesData;
Although we had successfully generated the report, we overlooked the requirement that the names of the salespersons in the sample report should be sorted in ascending order.
Press + to interact
To that end, SQL provides a mechanism to arrange the outcomes in either ascending or descending order.
Press + to interact
The structure of such a ...