SQL ORDER BY - W3School
www.w3schools.com › sql › sql_ref_order_byThe DESC command is used to sort the data returned in descending order. The following SQL statement selects all the columns from the "Customers" table, sorted descending by the "CustomerName" column: Example Get your own SQL Server SELECT * FROM Customers ORDER BY CustomerName DESC; Try it Yourself » Previous SQL Keywords Reference Next
ORDER BY – Sortieren - SQL
sql.lernenhoch2.de › order-by-sortierenORDER BY – Sortieren - SQL ORDER BY – Sortieren Mit ORDER BY kann man das Ergebnis einer Selektion auf- oder absteigend sortieren. 1 SELECT * FROM tabellen_name ORDER BY spalten_name ASC|DESC ASC = aufsteigend sortieren (kleinster Wert zuerst), default DESC = absteigend sortieren (größter Wert zuerst)