HackerRank-My SQL

Prepare > SQL > Basic Select > Select By ID

stem_sw 2023. 7. 6. 18:34
 

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.

 

 

 

 

코드


SELECT * FROM CITY
WHERE ID = 1661;