|
Sorts the result set in descending order
Classifica o conjunto de resultados em ordem decrescente
The following SQL statement selects all the columns from the "Customers" table, sorted descending by the "CustomerName" column:
A seguinte instrução SQL seleciona todas as colunas da tabela "Customers", classificadas em ordem decrescente pela coluna "CustomerName":
SELECT *
FROM Customers
ORDER BY CustomerName DESC;
|
|