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