혜온의 이것저것

[HackerRank] Select All (MySQL) 본문

Data Analysis/SQL

[HackerRank] Select All (MySQL)

혜온 :) 2022. 8. 3. 11:15

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:

풀이
select * from city
Comments