일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 데이터분석
- for
- 데이터베이스
- 시각화
- 데이터캠프
- sql with
- eda
- stratascratch
- 데이터 분석을 위한 sql 레시피
- 비즈니스분석가양성과정
- while
- 비즈니스 분석가
- SQL
- 국비지원
- sql partition by
- 태블로
- Python
- sql문제풀이
- BDA과정
- sql문제
- 논리적사고
- groupby
- Tableau
- SubQuery
- 크롤링
- 파이썬
- GA
- 데이터분석가 과정
- 데이터분석가양성과정
- 패스트캠퍼스
- Today
- Total
목록sql문제 (2)
원시인
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..