일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬
- 다중 JOIN
- 데이터시각화
- 프로그래머스
- SQL
- MySQL
- matplotlib
- airflow 설치
- SUM
- SQLite
- Limit
- TRUNCATE
- Oracle
- seaborn
- 전처리
- Round
- hackerrank
- pandas
- 머신러닝
- not in
- GROUPBY
- airflow.cfg
- having
- 그로스해킹
- 결측값
- PostgreSQL
- 데이터분석
- 데이터리안 웨비나
- solvesql
- join
Archives
- Today
- Total
Milky's note
[HackerRank](E) Revising the Select Query I 본문
https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true
Revising the Select Query I | HackerRank
Query the data for all American cities with populations larger than 100,000.
www.hackerrank.com
[문제]
Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA.
The CITY table is described as follows:
[답]
- oracle
select * from city
where population > 100000
and countrycode = 'USA';
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Japanese Cities' Names (0) | 2022.03.16 |
---|---|
[HackerRank](E) Japanese Cities' Attributes (0) | 2022.03.16 |
[HackerRank](E) Select By ID (0) | 2022.03.16 |
[HackerRank](E) Select All (0) | 2022.03.16 |
[HackerRank](E) Revising the Select Query II (0) | 2022.03.16 |
Comments