We have a table that has 2 attributes (Name, population)
When I write:
SELECT Name, MAX (Population) From Country
I don’t see the name of “correct” country in the result.
Suppose the correct answer is “China”
But I see the “Austria” (the first name in the table) instead of seeing “China”
Could you please guide me
When I write:
SELECT Name, MAX (Population) From Country
I don’t see the name of “correct” country in the result.
Suppose the correct answer is “China”
But I see the “Austria” (the first name in the table) instead of seeing “China”
Could you please guide me