일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- que
- CBOW
- SQL
- MySQL
- backward
- 파이썬
- 자연어처리
- algorithm
- affine
- skip-gram
- boj
- Programmers
- Numpy
- stak
- Python
- Heap
- Stack
- sort
- PPMI
- hash
- 신경망
- Sigmoid
- DeepLearning
- FullyConnectedLayer
- dl
- 프로그래머스
- select
- Word2vec
- 딥러닝
- kakao
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Revising the Select Query II (MySQL) 본문
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true
문제
Query the NAME field for all American cities in the CITY table with populations larger than 120000. The CountryCode for America is USA.
The CITY table is described as follows:
풀이
select name from city
where population > 120000 && countrycode = 'USA'
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Select By ID (MySQL) (0) | 2022.08.03 |
---|---|
[HackerRank] Select All (MySQL) (0) | 2022.08.03 |
[HackerRank] Revising the Select Query I (MySQL) (0) | 2022.08.03 |
[Programmers] 코딩테스트 연습 SQL - level4 (0) | 2022.06.29 |
[Programmers] 코딩테스트 연습 SQL - level3 (0) | 2022.04.13 |
Comments