Milky's note

[HackerRank](E) Select All 본문

SQL/SQL 코딩 테스트-HackerRank

[HackerRank](E) Select All

밀뿌 2022. 3. 16. 14:21

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:

 

[답]

- oracle

select * from city;
Comments