융무의 기술블로그
article thumbnail

Query a count of the number of cities in CITY having a Population larger than 100,000.

Input Format

The CITY table is described as follows:

  • query count of number of cities ==> SELECT COUNT(ID)
  • in CITY table ==> FROM CITY
  • Population larger than 100000 ==> WHERE POPULATION > 100000
SELECT COUNT(ID)
FROM CITY
WHERE POPULATION > 100000;

profile

융무의 기술블로그

@융무

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!