일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Word2vec
- 신경망
- sort
- Heap
- CBOW
- Stack
- 파이썬
- DeepLearning
- hash
- SQL
- MySQL
- Sigmoid
- 자연어처리
- Numpy
- 프로그래머스
- dl
- select
- skip-gram
- Python
- algorithm
- 딥러닝
- kakao
- stak
- affine
- boj
- FullyConnectedLayer
- Programmers
- que
- backward
- PPMI
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Revising the Select Query I (MySQL) 본문
https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true
문제
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