본문 바로가기

algorithm

[HackerRank] MySQL - Select By ID

문제

Query all columns for a city in CITY with the ID 1661.

The CITY table is described as follows:

 

 

 

풀이

 

select * from city where id = 1661;