1) select name from city where countrycode="JPN" ;
2) select name from city where countrycode='JPN' ;
3) select name from city where countrycode="jPn" ;
all the above queries are working in query 2 i am using single quotes and in 3 query i am using mixture of upper case and lowercase character . why it is producting correct output??.