기록하는 습관

[SQL] (해커랭크) Select All 본문

SQL

[SQL] (해커랭크) Select All

Avalla 2023. 8. 14. 16:25

Problem

HackerRank > Prepare > SQL > Basic Select > Select All

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

The CITY table is described as follows:

Solution

더보기
SELECT *
FROM CITY
;