혜온의 이것저것

[HackerRank] Select By ID (MySQL) 본문

Data Analysis/SQL

[HackerRank] Select By ID (MySQL)

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

https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true 

 

Select By ID | HackerRank

Query the details of the city with ID 1661.

www.hackerrank.com

 

문제

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
Comments