~고군분투 인생살이~

[EASY] Select By ID 본문

SQL/HACKER_RANK

[EASY] Select By ID

소금깨 2022. 10. 13. 21:11

 

 

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

'SQL > HACKER_RANK' 카테고리의 다른 글

[EASY] Japanese Cities' Names  (0) 2022.10.13
[EASY] Japanese Cities' Attributes  (0) 2022.10.13
[MEDIUM] Binary Tree Nodes  (0) 2022.10.12
[MEDIUM] The PADS  (0) 2022.10.12
[EASY] Select All  (0) 2022.10.12
Comments