IT/[SQL] Basic

Select By ID

carpe08 2021. 7. 28. 17:30
320x100

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

The CITY table is described as follows:

 

 

 

 

 

# 나의 해답

 

 


SELECT *
FROM CITY
WHERE ID=1661;

320x100
320x100