본문 바로가기
DB/SQL

HackerRank_04. Select By ID

by _S0_H2_ 2020. 6. 11.
728x90
반응형

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

 

select *
from CITY
where ID = 1661;

1661 Sayama JPN Saitama 162472

728x90
반응형

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

HackerRank_06. Japanese Cities' Names  (0) 2020.06.11
HackerRank_05.Japanese Cities' Attributes  (0) 2020.06.11
HackerRank_03. SELECT ALL  (0) 2020.06.11
HackerRank_02. Revising the Select Query II  (0) 2020.06.11
HackerRank_01. Revising the Select Query I  (0) 2020.06.11