Answers for "desc sql"

SQL
4

how to sort names in alphabetical order in sql

SELECT id,  
    first_name,
    last_name, 
  FROM customer
  ORDER BY last_name ASC;
Posted by: Guest on December-21-2020
4

order by sql

//this_for_descending_order.. 
 SELECT * FROM TableName ORDER BY columnName DESC;
 // this_for_ascending_order..
SELECT * FROM TableName ORDER BY columnName ASC;
Posted by: Guest on October-02-2020
2

sql asc

Used with ORDER BY to return the data in ascending order.
Example: Apples, Bananas, Peaches, Raddish
Posted by: Guest on January-07-2021
0

desc sql

SELECT * FROM Customers
ORDER BY CustomerName DESC;
Posted by: Guest on September-09-2021
0

sql desc

Used with ORDER BY to return the data in descending order.
Example: Raddish, Peaches, Bananas, Apples
Posted by: Guest on January-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language