목록Data Analyst/daily (51)
rubus0304 님의 블로그
87. Employee Bonus https://leetcode.com/problems/employee-bonus/description/Write a solution to report the name and bonus amount of each employee with a bonus less than 1000.Return the result table in any order. (오답) 보너스가 1000 이하인 값과 Null 값을 같이 구해야하는데, 결과가 왜 안 나올까select a.name, b.bonusfrom employee a left join bonus b on a.empID = b.empIDwhere b.bonus 1000 and b.bonus is nullgroup by ..
86. Average Time of Process per Machinehttps://leetcode.com/problems/average-time-of-process-per-machine/There is a factory website that has several machines each running the same number of processes. Write a solution to find the average time each machine takes to complete a process.The time to complete a process is the 'end' timestamp minus the 'start' timestamp. The average time is calculated ..
85. Rising Temperaturehttps://leetcode.com/problems/rising-temperature/Write a solution to find all dates' id with higher temperatures compared to its previous dates (yesterday).Return the result table in any order.The result format is in the following example. 어제 날짜보다 온도가 높은 날 계산 ( 새로운 함수 ) Self-Join + Datediff/ Subdate 함수 사용- 날씨 테이블을 자체 조인하여 각 행을 이전 행과 비교.온도가 더 높고 날짜 차이가 하루인 경우 결과로 선택! Date_su..
81. Invalid Tweets https://leetcode.com/problems/invalid-tweets/Write a solution to find the IDs of the invalid tweets. The tweet is invalid if the number of characters used in the content of the tweet is strictly greater than 15.Return the result table in any order.The result format is in the following example. 글자 수 세기 (Char_length) select tweet_idfrom tweetswhere char_length(content) > 15 Ch..
77. Recyclable and Low Fat Products https://leetcode.com/problems/recyclable-and-low-fat-products/description/ 문제 주석 잘 봐야함! 1, 3만 찍는게 아니라 값을 보고 나오게끔 유도하는 식..^_ㅠselect product_idfrom productswhere low_fats = "Y" and recyclable ="Y" 78. Find Customer Referee https://leetcode.com/problems/find-customer-referee/description/ Output이 나와야함! select namefrom customerwhere referee_id != 2 or referee_..
74. 특정 기간동안 대여 가능한 자동차들의 대여비용 구하기 (버림문제)CAR_RENTAL_COMPANY_CAR 테이블과 CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블과 CAR_RENTAL_COMPANY_DISCOUNT_PLAN 테이블에서 자동차 종류가 '세단' 또는 'SUV' 인 자동차 중 2022년 11월 1일부터 2022년 11월 30일까지 대여 가능하고 30일간의 대여 금액이 50만원 이상 200만원 미만인 자동차에 대해서 자동차 ID, 자동차 종류, 대여 금액(컬럼명: FEE) 리스트를 출력하는 SQL문을 작성해주세요. 결과는 대여 금액을 기준으로 내림차순 정렬하고, 대여 금액이 같은 경우 자동차 종류를 기준으로 오름차순 정렬, 자동차 종류까지 같은 경우 자동차 ID를 기준..
69. 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기 (답 이상한 거 같음 record 5이상이여야하는거 아님-_-???)CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 대여 시작일을 기준으로 2022년 8월부터 2022년 10월까지 총 대여 횟수가 5회 이상인 자동차들에 대해서 해당 기간 동안의 월별 자동차 ID 별 총 대여 횟수(컬럼명: RECORDS) 리스트를 출력하는 SQL문을 작성해주세요. 결과는 월을 기준으로 오름차순 정렬하고, 월이 같다면 자동차 ID를 기준으로 내림차순 정렬해주세요. 특정 월의 총 대여 횟수가 0인 경우에는 결과에서 제외해주세요. select month, car_id, recordsfrom(SELECT mon..
66. 조회수가 가장 많은 중고거래 게시판의 첨부파일 조회하기 USED_GOODS_BOARD와 USED_GOODS_FILE 테이블에서 조회수가 가장 높은 중고거래 게시물에 대한 첨부파일 경로를 조회하는 SQL문을 작성해주세요. 첨부파일 경로는 FILE ID를 기준으로 내림차순 정렬해주세요. 기본적인 파일경로는 /home/grep/src/ 이며, 게시글 ID를 기준으로 디렉토리가 구분되고, 파일이름은 파일 ID, 파일 이름, 파일 확장자로 구성되도록 출력해주세요. 조회수가 가장 높은 게시물은 하나만 존재합니다. (오답, 여기서 조회수가 가장 많은 출력 연결을 어케 해야하는지 막힘)SELECT concat('/home/grep/src/',b.board_id,'/',b.file_id,file_name,fi..
59. 자동차 대여 기록에서 대여중/ 대여가능 여부 구분하기 CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 2022년 10월 16일에 대여 중인 자동차인 경우 '대여중' 이라고 표시하고, 대여 중이지 않은 자동차인 경우 '대여 가능'을 표시하는 컬럼(컬럼명: AVAILABILITY)을 추가하여 자동차 ID와 AVAILABILITY 리스트를 출력하는 SQL문을 작성해주세요. 이때 반납 날짜가 2022년 10월 16일인 경우에도 '대여중'으로 표시해주시고 결과는 자동차 ID를 기준으로 내림차순 정렬해주세요. SELECT car_id, case when car_id in (select car_id fro..
1. 두 수의 차 정수 num1과 num2가 주어질 때, num1에서 num2를 뺀 값을 return하도록 soltuion 함수를 완성해주세요. [Python] def solution(num1, num2): return num1 - num2 2. 두 수의 곱정수 num1, num2가 매개변수 주어집니다. num1과 num2를 곱한 값을 return 하도록 solution 함수를 완성해주세요. [Python]def solution(num1, num2): return num1 * num2 3. 몫 구하기 정수 num1, num2가 매개변수로 주어질 때, num1을 num2로 나눈 몫을 return 하도록 solution 함수를 완성해주세요. [Python]def solut..