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