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