I have a table called country with a column called population. I need to get a table with only the highest and lowest population country. I have tried:
select max(population) from country;
select min(population) from country;
but I can't figure out how to combine these queries into only one query.
Best wishes!