해커랭크

SQL 문제풀이/해커랭크

[해커랭크 / Easy] Revising the Select Query II (MySQL)

https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true Revising the Select Query II | HackerRank Query the city names for all American cities with populations larger than 120,000. www.hackerrank.com CITY 테이블에서 POPULATION이 120,000을 초과한 NAME을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 SELECT NAME FROM CITY WHERE POPULATION > 120000 AND COUNTRYCODE = 'USA' cs

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

지나가던 개발자
'해커랭크' 태그의 글 목록 (2 Page)