일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 설명의무
- 그룹바이
- HackerRank
- 자연어 논문
- leetcode
- Statistics
- GRU
- 서브쿼리
- 자연어처리
- Window Function
- 표준편차
- nlp논문
- CASE
- SQL 날짜 데이터
- sql
- 코딩테스트
- 짝수
- sigmoid
- torch
- inner join
- update
- SQL코테
- 카이제곱분포
- NLP
- t분포
- LSTM
- 논문리뷰
- MySQL
- 자연어 논문 리뷰
- airflow
- Today
- Total
목록정규표현식 (2)
HAZEL
Weather Observation Station 7 >> 문제 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. >> 기본적으로 푸는 방법 SELECT DISTINCT city FROM station WHERE city LIKE '%a' OR city LIKE '%e' OR city LIKE '%i' OR city L..
Weather Observation Station 6 >> 문제 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. >> 기본적으로 푸는 방법 select DISTINCT city FROM station WHERE city LIKE 'a%' OR city LIKE 'e%' OR city LIKE 'i%..