SESSION NAME: Advance Select - 1
QUESTION NAME: Query ID Less than 4000 and Greater than 3000.
TABLE DESCRIPTION:
Query the ID, NAME and COUNTRY CODE of CITY Table
where ID is greater than 3000 and less than 4000
CODE:
select ID,NAME,COUNTRYCODE from CITY where ID>3000 and ID<4000;
0 Comments