SESSION NAME: Advance Select - 1

QUESTION NAME: Query NAME, COUNTRY CODE LESS THAN 4000.


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

CODE:
select NAME,COUNTRYCODE from CITY where ID>3000 and ID<4000;