일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- itertools
- Queue
- 완전탐색
- join
- 코딩테스트
- coding
- cte
- 파이썬
- hackerrank
- coding test
- Growth hacking
- level4
- collections
- import re
- lambda
- Level2
- programmers
- lv4
- 코테
- python
- 조합
- 코딩
- Stack
- mysql
- time complexity
- counter
- AARRR
- 프로그래머스
- tableau
- sql
- Today
- Total
목록전체 글 (154)
ror_coding

MySQL에선 select 구문의 alias를 group by 에서 쓸 수 있다 ! Question We define an employee's total earnings to be their monthly worked, and the maximum total earnings to be the maximum total earnings for any employee in the Employee table. Write a query to find the maximum total earnings for all employees as well as the total number of employees who have maximum total earnings. Then print these values as s..

Question You are given three tables: Students, Friends and Packages. Students contains two columns: ID and Name. Friends contains two columns: ID and Friend_ID (ID of the ONLY best friend). Packages contains two columns: ID and Salary (offered salary in $ thousands per month).Write a query to output the names of those students whose best friends got offered a higher salary than them. Names must ..

Question You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks.Grades contains the following data:Ketty gives Eve a task to generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8. The report must be in descending order by grade -- i.e. higher grades are entered ..

삼각형이 되기 위한 세 변의 조건. Question Write a query identifying the type of each record in the TRIANGLES table using its three side lengths. Output one of the following statements for each record in the table:Equilateral: It's a triangle with sides of equal length.Isosceles: It's a triangle with sides of equal length.Scalene: It's a triangle with sides of differing lengths.Not A Triangle: The given va..

20 20이 self join하는 예외 케이스 나눠서 풀기 ! QuestionYou are given a table, Functions, containing two columns: X and Y.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.Sample InputSample Output20 2020 2122 23 Point 20 20이 하나만 있을 때 서로 self join해서 20 20 ..

Revenue 수익화수익화 관리를 위해서는 서비스가 어떤 비즈니스 모델을 가지고 있는지를 명확히 이해하고, 그 비즈니스 모델이 잘 작동하는지, 비용 대비 수익이 안정적인지를 데이터로 확인할 수 있어야 합니다.1. 수익화 관련 주요 지표 4가지1. ARPU (Average Revenue Per User, 인당 평균 매출, 사용자 당 매출) 구매자 수, 구매 건수, 매출과 같은 기본적인 지표를 제외하고 수익화 측면에서 우선적으로 봐야 하는 중요한 지표입니다. 이는 전반적인 수익화 상황을 보는 데 굉장이 유용합니다.(단순히 매출이 많다, 적다는 수준이 아니라 이후 사용자가 늘어난다면 매출이 어떤 속도로 증가할지를 가늠하는 데 좋은 기준이 되기 때문입니다.)ARPU = Revenue / User- ARPDAU ..