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