Skip to content

Instantly share code, notes, and snippets.

@Justus-coded
Created September 30, 2020 14:14
Show Gist options
  • Save Justus-coded/3a18c7e737dd20d1141bb01060fe361c to your computer and use it in GitHub Desktop.
Save Justus-coded/3a18c7e737dd20d1141bb01060fe361c to your computer and use it in GitHub Desktop.
Hackerrank SQL Challenge
/*
Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order.
*/
SELECT name
FROM Employee
ORDER BY name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment