[HackerRank] Revising the Select Query I

JH4·2023년 3월 23일
0

SQL

목록 보기
40/49


Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA.

select * from city
where population > 100000 and countrycode = "usa"
profile
개발일지

0개의 댓글