Statement: alvaro campos is goalkeeper for the team that had no matches with an average higher than 0.61

Input Table: 2008 - 09 segunda división b

Step 1: Select rows where 'team' is 'real murcia b'.
goalkeeper goals matches average team
miguel zapata 17 28 0.61 atlético ciudad
rubén martínez 24 32 0.75 cartagena
orlando quintana 29 34 0.85 lorca deportiva
álvaro campos 24 28 0.86 real murcia b
matías garavano 26 30 0.87 mérida

Step 2: Select rows where 'average' is higher than 0.61.
goalkeeper goals matches average team
álvaro campos 24 28 0.86 real murcia b

Step 3: Use a `CASE` statement to return TRUE if the number of rows is equal to 0, otherwise return FALSE.
goalkeeper goals matches average team
álvaro campos 24 28 0.86 real murcia b

Final output table:
verification_result
FALSE

Prediction: FALSE