QUESTION NO:1111113

QUESTION NAME: Query NAME, COUNTRY CODE GREATER THAN 3000

TABLE DESCRIPTION:Query the NAME and COUNTRY CODE of CITY Table
where ID is greater than 3000.

CODE:
select NAME,COUNTRYCODE from city where id>3000;