(Use Subqueries) Select all countries whose population is greater than the average population of all nations. Create a database named Product and create a table called Customer with the following ...
select country_name,rating from person where rating= (select rating from person where country_name = 'usa'); ...