Answers for "use order by in sql for alphabetical"

SQL
5

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

Code answers related to "use order by in sql for alphabetical"

Code answers related to "SQL"

Browse Popular Code Answers by Language