융무의 기술블로그
article thumbnail

https://www.hackerrank.com/challenges/name-of-employees/problem?h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen

 

Employee Names | HackerRank

Print employee names.

www.hackerrank.com

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:

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

Sample Output

Angela Bonnie Frank Joe Kimberly Lisa Michael Patrick Rose Todd

 

  • query employee names ==> SELECT name
  • from Employee table ==> FROM Employee
  • in alphabetical order ==> ORDER BY name
SELECT name 
FROM Employee 
ORDER BY name;

profile

융무의 기술블로그

@융무

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!