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