SELECT *
FROM "health_expenditure_and_suicide_rates_2000_2019"
LIMIT 10;
SELECT
year,
country,
health_expenditure_per_capita,
suicide_rate_per_100k
FROM
"health_expenditure_and_suicide_rates_2000_2019"
WHERE
country IN ('United States', 'Canada', 'Japan', 'Germany')
ORDER BY
year ASC;