Statement: fitzroy has a higher score than any of the other teams

Input Table: 1975 vfl season

home_teamhome_team_scoreaway_teamaway_team_scorevenuecrowddate
geelong14.20 (104)melbourne14.14 (98)kardinia park133281975-06-07
st kilda15.9 (99)north melbourne17.19 (121)moorabbin oval178111975-06-07
richmond19.14 (128)essendon12.9 (81)mcg494691975-06-07
hawthorn19.24 (138)collingwood13.11 (89)princes park238301975-06-07
fitzroy15.7 (97)carlton16.10 (106)junction oval162491975-06-07
footscray13.11 (89)south melbourne12.15 (87)vfl park140561975-06-07

SQL Command:

SELECT CASE WHEN (SELECT MAX(home_team_score) FROM table_sql) > (SELECT MAX(away_team_score) FROM table_sql) AND (SELECT MAX(home_team_score) FROM table_sql) > (SELECT MAX(away_team_score) FROM table_sql WHERE home_team != 'fitzroy') AND (SELECT MAX(home_team_score) FROM table_sql) > (SELECT MAX(away_team_score) FROM table_sql WHERE home_team != 'fitzroy' AND away_team != 'fitzroy') THEN 'TRUE' ELSE 'FALSE' END;