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