SELECT Year, ISO, Rank, Score, Country, Zone,
CASE
WHEN Score between 85 and 100 THEN 'Good'
WHEN Score between 70 and 85 then 'Satisfactory'
WHEN Score between 55 and 70 THEN 'Problematic'
WHEN Score between 40 and 55 THEN 'Difficult'
WHEN Score between 0 and 40 THEN 'Very Serious'
ELSE Score
END AS Score_level
FROM "Press Freedom Index"