반응형

@notepad_jj2

츄르사려고 코딩하는집사입니다.


1. [HackerRank] Revising the Select Query I SQL

 

2. 문제 출처

https://www.hackerrank.com/challenges/revising-the-select-query/problem

 

Revising the Select Query I | HackerRank

Query the data for all American cities with populations larger than 100,000.

www.hackerrank.com

 

3. 문제

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:

 

4. 소스 코드

select * from CITY
where POPULATION > 100000
and COUNTRYCODE = 'USA'

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기