1SELECT *
2FROM "health_expenditure_and_suicide_rates_2000_2019"
3LIMIT 10;
4SELECT
5  year,
6  country,
7  health_expenditure_per_capita,
8  suicide_rate_per_100k
9FROM
10  "health_expenditure_and_suicide_rates_2000_2019"
11WHERE
12  country IN ('United States', 'Canada', 'Japan', 'Germany')
13ORDER BY
14  year ASC;
15