Statement: fred couples had a score larger than 210

Input Table: 1988 u.s. open (golf)

placeplayercountryscoreto_par
1curtis strangeunited states70 + 67 + 69 = 206- 7
t2nick faldoengland72 + 67 + 68 = 207- 6
t2bob gilderunited states68 + 69 + 70 = 207- 6
t2scott simpsonunited states69 + 66 + 72 = 207- 6
t5larry mizeunited states69 + 67 + 72 = 208- 5
t5d a weibringunited states71 + 69 + 68 = 208- 5
7mark o'mearaunited states71 + 72 + 66 = 209- 4
8fred couplesunited states72 + 67 + 71 = 210- 3
9lanny wadkinsunited states70 + 71 + 70 = 211- 2
10ken greenunited states72 + 70 + 70 = 212- 1

SQL Command:

SELECT CASE WHEN (SELECT score FROM table_sql WHERE player = 'fred couples') > 210 THEN 'TRUE' ELSE 'FALSE' END;