This tutorial looks at how we can use SELECT statements within SELECT statements to perform more complex queries. 1.List each country name where the population is larger than that of ‘Russia’. worl
1.You can use WHERE name LIKE ‘B%’ to find the countries that start with “B”. The % is a wild-card it can match any characters Find the country that start with Y SELECT name FROM worldWHERE name L