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

1. Symmetric Pairs >> 문제 You are given a table, Functions, containing two columns: X and Y. Two pairs (X1, Y1) and (X2, Y2) are said to be symmetric pairs if X1 = Y2 and X2 = Y1. Write a query to output all such symmetric pairs in ascending order by the value of X. List the rows such that X1 ≤ Y1. Sample Input Sample Output 20 20 20 21 22 23 >> 문제 풀이 SELECT X , Y FROM Functions WHERE X = Y GROUP..
1. 181. Employees Earning More Than Their Managers >> 문제 The Employee table holds all employees including their managers. Every employee has an Id, and there is also a column for the manager Id. +----+-------+--------+-----------+ | Id | Name | Salary | ManagerId | +----+-------+--------+-----------+ | 1 | Joe | 70000 | 3 | | 2 | Henry | 80000 | 4 | | 3 | Sam | 60000 | NULL | | 4 | Max | 90000 |..