HackerRank: [SQL Basic Select] (19/20) Employee Names | order by in SQL

HackerRank: [Basic Select - 19/20] Employee Names |  ORDER BY in SQL
I started studying SQL from a very famous site - HackerRank. Here I will try to provide multiple approaches & solutions to the same problem. It will help you learn and understand SQL in a better way.

Please make use of my blog posts for learning purpose only and feel free to ask your questions in the comment box below in case of any doubt.

Click Here for the previous blog-post in the series.


SQL Problem Statement:

Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order.



Input Format:

The Employee table containing employee data for a company is described as follows:

Employee_Columns

where employee_id is an employee's ID number, name is their name, months is the total number of months they've been working for the company, and salary is their monthly salary.

Sample Input:
Employee_Sample_data

Sample Output:
Angela 
Bonnie 
Frank 
Joe 
Kimberly 
Lisa 
Michael
Patrick
Rose
Todd



Solution: (MySQL Query):

SELECT NAME
FROM EMPLOYEE
ORDER BY NAME;
NOTE: 
  1. The ORDER BY clause is used to get an alphabetically ordered list of Employee Names.


Sample Output:

Alan
Amy
Andrew
Andrew
Angela
Ann
Anna
Anthony
Antonio
Benjamin
Bonnie
Brandon
Brandon



--------------------------------------------------------------------------------
Click here to see solutions for all Machine Learning Coursera Assignments.
&
Click here to see more codes for Raspberry Pi 3 and similar Family.
&
Click here to see more codes for NodeMCU ESP8266 and similar Family.
&
Click here to see more codes for Arduino Mega (ATMega 2560) and similar Family.
Feel free to ask doubts in the comment section. I will try my best to answer it.
If you find this helpful by any mean like, comment and share the post.
This is the simplest way to encourage me to keep doing such work.

Thanks & Regards,
-Akshay P Daga
إرسال تعليق (0)
أحدث أقدم