Milky's note

[HackerRank](E) Select By ID 본문

SQL/SQL 코딩 테스트-HackerRank

[HackerRank](E) Select By ID

밀뿌 2022. 3. 16. 14:23

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:

 

[답]

- oracle

select * from city
where ID = '1661';
Comments