Statement: the score of the sheffield wednesday versus southampton game was 0 - 0

Input Table: 1983 - 84 fa cup

tie_nohome_teamscoreaway_teamdate
1notts county1 - 2everton1984-03-10
2sheffield wednesday0 - 0southampton1984-03-11
replaysouthampton5 - 1sheffield wednesday1984-03-20
3plymouth argyle0 - 0derby county1984-03-10
replayderby county0 - 1plymouth argyle1984-03-14
4birmingham city1 - 3watford1984-03-10

SQL Command:

SELECT CASE WHEN (SELECT score FROM table_sql WHERE home_team = 'sheffield wednesday' AND away_team = 'southampton') = '0 - 0' OR (SELECT score FROM table_sql WHERE home_team = 'southampton' AND away_team = 'sheffield wednesday') = '0 - 0' THEN 'TRUE' ELSE 'FALSE' END;