Indicate the problem with the query which attempts to calculate the average GDP in all years where the GPDwas over10trillion | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Indicate the problem with the query which attempts to calculate the average GDP in all years where the GPDwas over10trillion

SELECT AVG(gdp_amount) FROM gdp WHERE year IN (SELECT year FROM gdp WHERE gdp_amount >100 00 ORDER BY YEAR) I will put choices in the comments

4th Aug 2020, 5:43 PM
Marina Magdy Girgis
1 Answer
0
10000 is not 10 trillion. And this ordering by year is completely useless. But doesn't matter, because the sub-select itself is useless. What's your question about this?
4th Aug 2020, 11:02 PM
Sandra Meyer
Sandra Meyer - avatar