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