Final answer:
The ORDER BY clause is used in a SELECT statement to sort the data returned by the GROUP BY clause in descending order.
Step-by-step explanation:
If the data returned by the GROUP BY clause needs to be sorted in descending order, you must include a ORDER BY clause in the SELECT statement. The ORDER BY clause allows you to specify the order in which the grouped results are displayed, either in ascending or descending order. To sort the grouped data in descending order, you would add 'ORDER BY column_name DESC' to your SQL query, where column_name is the name of the column you wish to sort on.