Statement: 3.8 (26) was the away team score against a home team that scored 5.12 (42)

Input Table: 1960 vfl season

home_teamhome_team_scoreaway_teamaway_team_scorevenuecrowddate
north melbourne5.12 (42)richmond3.8 (26)arden street oval90001960-05-07
melbourne16.14 (110)south melbourne6.10 (46)mcg231351960-05-07
fitzroy5.11 (41)geelong8.7 (55)brunswick street oval138021960-05-07
hawthorn6.9 (45)footscray6.17 (53)glenferrie oval160001960-05-07
essendon11.10 (76)collingwood11.8 (74)windy hill300001960-05-07
st kilda5.11 (41)carlton7.3 (45)junction oval187001960-05-07

SQL Command:

SELECT CASE WHEN (SELECT away_team_score FROM table_sql WHERE home_team_score = '5.12 (42)' AND away_team_score = '3.8 (26)') IS NOT NULL THEN 'TRUE' ELSE 'FALSE' END;