Im between cherry

Hackerrank | MySQL | Select All 본문

데이터분석/practice_query

Hackerrank | MySQL | Select All

meal 2020. 8. 27. 18:00

Select All

Problem

 

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:

 

 

 

SOLUTION

SELECT *
FROM city
Comments