Lesotho suicide rate for 2019 was 72.40, a 5.48% decline from 2018.
Lesotho suicide rate for 2018 was 76.60, a 2.17% decline from 2017.
Lesotho suicide rate for 2017 was 78.30, a 10% decline from 2016.
Lesotho suicide rate for 2016 was 87.00, a 5.84% decline from 2015.
Suicide mortality rate is the number of suicide deaths in a year per 100,000 population. Crude suicide rate (not age-adjusted).
SELECT
a.id AS table_country_id,
a.name AS table_country_name,
b.value AS table_value
FROM countries AS a
JOIN annual_data_normalized AS b
ON b.series_id = CONCAT('SH.STA.SUIC.P5', '-', a.id)
WHERE
YEAR(b.date) = '2019'
AND b.value IS NOT NULL
AND a.income_level_id = 'NA'
ORDER BY table_value DESC