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 |
Tags
- SQL 날짜 데이터
- 그룹바이
- inner join
- Window Function
- torch
- 논문리뷰
- NLP
- 자연어 논문 리뷰
- 설명의무
- MySQL
- HackerRank
- leetcode
- 자연어처리
- airflow
- GRU
- 코딩테스트
- sigmoid
- 자연어 논문
- 표준편차
- LSTM
- sql
- nlp논문
- SQL코테
- update
- CASE
- 서브쿼리
- t분포
- 카이제곱분포
- 짝수
- Statistics
Archives
- Today
- Total
목록LIMIT 심화 (1)
HAZEL
[ SQL : 사용자 정의 함수(DECLARE, SET), CASE , IF, LIMIT 심화 ] 177. Nth Highest Salary
>> 문제 Write an SQL query to report the nth highest salary from the Employee table. If there is no nth highest salary, the query should report null. ex, 4번째로 높은 셀러리가 없을 경우 null 을 나온다 The query result format is in the following example. 동점인 점수는 다 1등 그 다음은 2등으로, dense rank 를 기준으로 생각해주면 된다. https://leetcode.com/problems/nth-highest-salary/submissions/ >> 문제 풀이 방법 * 사용자 정의 함수의 방법 https://hazel01.tist..
DATA ANALYSIS/SQL
2021. 11. 12. 00:10