본문 바로가기
반응형

코딩테스트/해커랭크5

[해커랭크/Easy] Basic Select - Japanese Cities' Attributes (SQL) 🔎 문제 링크 https://www.hackerrank.com/challenges/japanese-cities-attributes/problem?isFullScreen=true Japanese Cities' Attributes | HackerRank Query the attributes of all the cities in Japan. www.hackerrank.com ✏️ 문제 설명 Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows. CITY 테이블에 있는 모든 일본 도시의 모든 속성을 쿼리합니다. 일본의 국가 .. 2023. 12. 11.
[해커랭크/Easy] Basic Select - Select By ID (SQL) 🔎 문제 링크 https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true Select By ID | HackerRank Query the details of the city with ID 1661. www.hackerrank.com ✏️ 문제 설명 Query all columns for a city in CITY with the ID 1661. The CITY table is described as follows. ID가 1661인 CITY의 도시에 대한 모든 열을 쿼리합니다. CITY 테이블은 다음과 같이 설명됩니다. 🔦 문제 풀이 모든 열을 가져오는 구문은 SELECT와 FROM 사이에 * 을 사용하면 됩니다. 단 문제의 .. 2023. 12. 10.
[해커랭크/Easy] Basic Select - Select ALL (SQL) 🔎 문제 링크 https://www.hackerrank.com/challenges/select-all-sql/problem?isFullScreen=true Select All | HackerRank Query all columns for every row in a table. www.hackerrank.com ✏️ 문제 설명 Query all columns (attributes) for every row in the CITY table. The CITY table is described as follows. CITY 테이블의 모든 행에 대한 모든 열(속성)을 쿼리합니다. CITY 테이블은 다음과 같이 설명됩니다. 🔦 문제 풀이 모든 열을 쿼리하는 방법은 SELECT와 FROM 구문 사이에 컬럼명을 명시하.. 2023. 12. 10.
[해커랭크/Easy] Basic Select - Revising the Select Query II (SQL) 🔎 문제 링크 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 ✏️ 문제 설명 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 .. 2023. 12. 2.
[해커랭크/Easy] Basic Select - Revising the Select Query I (SQL) 🔎 문제 링크 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 ✏️ 문제 설명 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 des.. 2023. 11. 30.
반응형