[HackerRank] Select All

이정진·2021년 11월 29일
0

SQL

목록 보기
11/23
post-thumbnail

Select All

난이도 구분 : Easy

문제

Query all columns (attributes) for every row in the CITY table.

The CITY table is described as follows:

문제 풀이

모든 Field를 조회하면 된다.

SQL

SELECT ID, NAME, COUNTRYCODE, DISTRICT, POPULATION
FROM CITY

0개의 댓글