
SQL 문제풀이/해커랭크
[해커랭크 / Easy] 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 CTIY 테이블에서 인구가 100,000을 초과하는 모든 칼럼을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 SELECT * FROM CITY WHERE POPULATION > 100000 AND COUNTRYCODE = 'USA' cs