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 |
Tags
- airflow
- 자연어 논문
- CASE
- inner join
- 코딩테스트
- 짝수
- 카이제곱분포
- sigmoid
- MySQL
- NLP
- Statistics
- LSTM
- 논문리뷰
- torch
- update
- leetcode
- 표준편차
- Window Function
- 설명의무
- GRU
- SQL코테
- SQL 날짜 데이터
- t분포
- HackerRank
- 서브쿼리
- 자연어 논문 리뷰
- 그룹바이
- 자연어처리
- sql
- nlp논문
Archives
- Today
- Total
목록SQL 코딩테스트 (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