일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- stratascratch
- 데이터분석
- 국비지원
- while
- 태블로
- 패스트캠퍼스
- 데이터캠프
- 논리적사고
- 데이터베이스
- GA
- sql with
- 크롤링
- Python
- 데이터 분석을 위한 sql 레시피
- groupby
- for
- sql문제풀이
- eda
- 비즈니스분석가양성과정
- sql문제
- 데이터분석가 과정
- 데이터분석가양성과정
- sql partition by
- SQL
- 파이썬
- 비즈니스 분석가
- Tableau
- BDA과정
- SubQuery
- 시각화
- Today
- Total
목록stratascratch (3)
원시인
Salesforce 인터뷰 문제 Compare each employee's salary with the average salary of the corresponding department. Output the department, first name, and salary of employees along with the average salary of that department. 각 직원의 급여를 해당 부서의 평균 급여와 비교하세요. 해당 부서의 평균 급여와 함께 부서, 이름 및 직원 급여를 출력합니다. 문제가 짦다고 방심하면 안되는 문제인거 같아요 ㅎㅎ 밑에 풀었던 답들을 보면서 같이 고민해보는 시간이 되었으면 좋겠습니다. 첫번째 answer select department,first_name,sal..
Amazon 인터뷰 문제 Find the details of each customer regardless of whether the customer made an order. Output the customer's first name, last name, and the city along with the order details. You may have duplicate rows in your results due to a customer ordering several of the same items. Sort records based on the customer's first name and the order details in ascending order. 고객의 주문 여부에 관계없이 각 고객의 세부..
StrataScratch Drop Box 인터뷰 문제 Write a query that calculates the difference between the highest salaries found in the marketing and engineering departments. Output just the absolute difference in salaries. 마케팅 부서와 엔지니어링 부서에서 가장 높은 연봉의 차이를 계산하는 쿼리를 작성합니다. SELECT MAX(CASE WHEN b.department = 'marketing' THEN salary END) - MAX(CASE WHEN b.department = 'engineering' THEN salary END) AS max_salary_dif..