본문 바로가기
CODING TEST/SQL : HackerRank

[MySQL] Select All

by 주 녕 2021. 3. 27.
반응형

 SQL  >  Basic Select  > Select All 

 Problem 

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

The CITY table is described as follows:

 

 My Answer 

SELECT *
FROM CITY

 

 

반응형

댓글