Statement: 6.800 is the a score when the b score is more than 9.225 , and the total is less than 15.975

Input Table: gymnastics at the 2008 summer olympics - men 's rings

positiongymnasta_scoreb_scoretotal
1chen yibing ( chn )7.39.22516.525
2yordan yovchev ( bul )7.38.97516.275
3oleksandr vorobiov ( ukr )7.29.0516.25
4yang wei ( chn )7.38.92516.225
5matteo morandi ( ita )7.18.92516.025
6andrea coppolino ( ita )6.89.17515.975
7danny pinheiro rodrigues ( fra )7.28.615.8
8robert stanescu ( rou )7.08.7515.75

SQL Command:

SELECT CASE WHEN (SELECT a_score FROM table_sql WHERE b_score > 9.225 AND total < 15.975) = 6.800 THEN 'TRUE' ELSE 'FALSE' END;