[HackerRank/MySQL] The Report
이름, 등급, 점수 출력하기 (등급 기준 내림차순, 등급이 동일한 경우, 이름 기준 오름차순) 링크: https://www.hackerrank.com/challenges/the-report/problem The Report | HackerRank Write a query to generate a report containing three columns: Name, Grade and Mark. www.hackerrank.com SELECT IF(g.grade SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 IF(조건, A, B): 조건이 참일 때, A값 출력, 조건이 거짓일 때, B값 출력 FROM: 키워드와 함께 검색하고 싶은 속성이 있는 데이블의 이름..
더보기
[HackerRank/MySQL] New Companies
회사코드, 설립자 이름, 총 리드 관리자 수, 총 고위 관리자 수, 총 관리자 수, 총 직원 수 출력하기. (회사코드 기준 오름차순으로 출력) 링크: https://www.hackerrank.com/challenges/the-company/problem New Companies | HackerRank Find total number of employees. www.hackerrank.com SELECT c.company_code, c.founder, COUNT(DISTINCT lm.lead_manager_code), COUNT(DISTINCT sm.senior_manager_code), COUNT(DISTINCT m.manager_code), COUNT(DISTINC..
더보기