본문 바로가기

Algorithm/MySQL

[해커랭크(HackerRank)] Select All (MySQL)

문제

Query all columns (attributes) for every row in the CITY table.
The CITY table is described as follows:

 

코드

SELECT *
FROM CITY

 

풀이

시티 테이블의 모든 컬럼 조회

 

 

Select All | HackerRank

Query all columns for every row in a table.

www.hackerrank.com

 

반응형