SELECT title, score, DECODE(SIGN(score-8.5), 1, 'Excellent', 0, 'OK', -1, 'OK') FROM movie WHERE 10>id
SELECT title, score, IF(score>8.5,'Excellent','OK') FROM movie WHERE 10>id