Mysql> EXPLAIN ANALYZESELECR city.CountryCode,contry,Name AS Country_Nae,
FROM world.city
INNER JOIN world.country ON country.Code =city.CountryCode
WHERE country.Continent=’Asia’
AND city.Population >100000
ORDER BY city,Population DESC\G
***********************************1.row*****************************
EXPLATN:
->Sort <temporary>.Poppulation DESC(acctual time =8.306..8.431 row =125 Ioope=1)
->Strem resule(acctual time =0.145..8.033 row =125rows=125 Ioope=1)
->Nested loop inner join (cost=241.12 rows=205) (acctual time =0.141.7.787 row =155 Ioope=1)
->Filter (world.country,Continent =’Asia’)(cost=25.40 rows=34)(acctual time =0.064..0.820 row =51
Ioope=51)
->index lookup on city using CountryCode(Countrycode=world.country.code)(acctual time =4.53..row =10 )
1 row in set (0.0094 sec)
Which two statements are true?