일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sort
- hash
- backward
- kakao
- 파이썬
- Python
- CBOW
- MySQL
- 딥러닝
- dl
- que
- Sigmoid
- select
- Word2vec
- DeepLearning
- FullyConnectedLayer
- Programmers
- Stack
- 신경망
- Heap
- SQL
- PPMI
- 자연어처리
- skip-gram
- 프로그래머스
- Numpy
- boj
- stak
- affine
- algorithm
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Revising the Select Query I (MySQL) 본문
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:
풀이
select * from city
where population>100000 && countrycode = 'USA'
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Select All (MySQL) (0) | 2022.08.03 |
---|---|
[HackerRank] Revising the Select Query II (MySQL) (0) | 2022.08.03 |
[Programmers] 코딩테스트 연습 SQL - level4 (0) | 2022.06.29 |
[Programmers] 코딩테스트 연습 SQL - level3 (0) | 2022.04.13 |
[Programmers] 코딩테스트 연습 SQL - level2 (0) | 2022.03.22 |
Comments