Font size:
Print
Question:

Given a relation county(name, continent, population) which of the following is a valid SQL statement?


1. SELECT continent, population FROM country GROUP BY continent
2. SELECT continent, SUM(population) FROM country GROUP BY continent
3. SELECT name, population FROM country GROUP BY continent
4. SELECT name, SUM(population) FROM country GROUP BY continent
Prev Question A packet whose destination is outside the local...
Next Question Relation C is a projection of relation A. Which...