SQL코딩테스트9 [HackerRank] Symmetric Pairs 문제 Two pairs (X1, Y1) and (X2, Y2) are said to be symmetric pairs if X1 = Y2 and X2 = Y1. Write a query to output all such symmetric pairs in ascending order by the value of X. List the rows such that X1 ≤ Y1. * Join문을 활용해서 구할 수 있는 문제이다. 실행 코드 1) X!=Y, 즉 X INNER JOIN으로 짝 구하기 2) X=Y 인 케이스 -> HAVING COUNT(*) >= 2 조건을 추가해서 짝 구하기 두 가지 케이스를 UNION으로 합쳐주면 간단하게 풀 수 있다. 2023. 3. 17. [프로그래머스] 서울에 위치한 식당 목록 출력하기 문제 REST_INFO와 REST_REVIEW 테이블에서 서울에 위치한 식당들의 식당 ID, 식당 이름, 음식 종류, 즐겨찾기수, 주소, 리뷰 평균 점수를 조회하는 SQL문을 작성해주세요. 이때 리뷰 평균점수는 소수점 세 번째 자리에서 반올림 해주시고 결과는 평균점수를 기준으로 내림차순 정렬해주시고, 평균점수가 같다면 즐겨찾기수를 기준으로 내림차순 정렬해주세요. 실행 코드 GROUP BY 사용해서 REST_ID를 묶어줘야 정답 처리가 된다~ 2023. 3. 16. [HackerRank] New Companies 문제 Given the table schemas below, write a query to print the company_code, founder name, total number of lead managers, total number of senior managers, total number of managers, and total number of employees. Order your output by ascending company_code. 실행 코드 5개의 테이블을 LEFT JOIN으로 줄줄이 연결해주면 된다. 2023. 3. 14. [HackerRank] Placements 문제 Write a query to output the names of those students whose best friends got offered a higher salary than them. Names must be ordered by the salary amount offered to the best friends. It is guaranteed that no two students got same salary offer. * 실행 코드 3개의 테이블이 제시되어 있는데, 먼저 본인을 기준으로 연봉 테이블을 구해준 뒤, 본인의 친구 기준으로 연봉 테이블을 연결해주어야 한다. 나는 from절에서 서브쿼리를 사용해서 조건을 추가했다. 1. 서브쿼리를 통해 본인의 연봉 제시 2. 본 쿼리에서 'IN.. 2023. 3. 13. [HackerRank] Top Competitors 문제 Julia just finished conducting a coding contest, and she needs your help assembling the leaderboard! Write a query to print the respective hacker_id and name of hackers who achieved full scores for more than one challenge. Order your output in descending order by the total number of challenges in which the hacker earned a full score. If more than one hacker received full scores in same number.. 2023. 3. 11. [프로그래머스] 식품분류별 가장 비싼 식품의 정보 조회하기 문제 FOOD_PRODUCT 테이블에서 식품분류별로 가격이 제일 비싼 식품의 분류, 가격, 이름을 조회하는 SQL문을 작성해주세요. 이때 식품분류가 '과자', '국', '김치', '식용유'인 경우만 출력시켜 주시고 결과는 식품 가격을 기준으로 내림차순 정렬해주세요. 실행 코드 이전에 풀었던 즐겨찾기 식당 문제와 유사한 문제이다. where절에 이중쿼리를 조건문으로 넣어서 풀이했다. 이중쿼리 부분이 여전히 약한데, 여러 문제 풀어보면서 보완해야겠다 ! 2023. 3. 9. 이전 1 2 다음