where문을 어떻게 활용할 수 있을지 알아봅시다.

select CountryCode, District
from city
where countrycode='KOR' AND District='Seoul';

select * from city where population between 100000 and 300000;

select * from city
where name in ('Kabul', 'Seoul', 'Tokyo');

# New로시작하는 모든 값들 출력
select * from city where Name LIKE 'New%';
