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

코드설명

SELECT를 활용합니다.

 

ID = 1661인 도시의 모든 컬럼을 조회합니다.

ORACLE 코드

SELECT * 
FROM CITY
WHERE ID = 1661;

+ Recent posts