LIMIT number of Rows

Remember, if you only want to return a certain number of results, you can use the LIMIT keyword to limit the number of rows returned
Example:
Get the country, average budget, and average gross take of countries that have made more than 10 films. Order the result by country name, and limit the number of results displayed to 5. You should alias the averages as avg_budget and avg_gross respectively.