일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- forecast
- ProfileReport
- Gaimification
- ModelCheckPoint
- 코딩테스트
- 파이썬
- 신경쓰기의 기술
- TensorFlowGPU
- SQL
- Inventory Optimization
- pandas profiling
- eda
- Product Demand
- Labor Management System
- leetcode
- oracle
- SKU Consolidation
- 웨어하우스 보관 최적화
- HackerRank
- 딥러닝
- tensorflow
- 피그마인디언
- ABC Analysis
- MS SQL Server
- 프로그래머스
- 코딩테스트연습
- 당신의 인생이 왜 힘들지 않아야 한다고 생각하십니까
- kaggle
- MySQL
- 데이터분석
- Today
- Total
목록MS SQL Server (10)
오늘도 배운다

문제 source: LeetCode Write an SQL query to display the records with three or more rows with consecutive id's, and the number of people is greater than or equal to 100 for each. Return the result table ordered by visit_date in ascending order. 제출답안(MySQL) WITH std AS ( SELECT id, visit_date, people, id - ROW_NUMBER() OVER(ORDER BY id) AS row_num FROM stadium WHERE people >= 100 ), std_cons AS ( SE..

문제 source: HackerRank Harry Potter and his friends are at Ollivander's with Ron, finally replacing Charlie's old broken wand.Hermione decides the best way to choose is by determining the minimum number of gold galleons needed to buy each non-evil wand of high power and age. Write a query to print the id, age, coins_needed, and power of the wands that Ron's interested in, sorted in order of desce..