[HackerRank/SQL] 05. Easy - Japanese Cities' Attributes

jwKim·2023년 1월 5일
0

💻코테코테

목록 보기
7/42

< 과제 >

Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.

The CITY table is described as follows:
img

< 내 코드 >

SELECT 
    name
FROM
    city
WHERE 
    countrycode = 'JPN';

< 출처 >
https://www.hackerrank.com/domains/sql

0개의 댓글