Statement: the total medals for the nation with 1 silver and 0 golds is more than 2

Input Table: volleyball at the summer olympics

ranknationgoldsilverbronzetotal
1soviet union3216
2united states3014
3brazil2305
4russia1124
5japan1113
6netherlands1102
7yugoslavia1012
8poland1001
9italy0235
10czechoslovakia0112
11bulgaria0101
11east germany0101
13argentina0011
13cuba0011
13romania0011

SQL Command:

SELECT CASE WHEN (SELECT total FROM table_sql WHERE silver = 1 AND gold = 0) > 2 THEN 'TRUE' ELSE 'FALSE' END;