Statement: the score was 5 - 4 on february 24
Input Table: 2003 - 04 philadelphia flyers season
| game | february | opponent | score | record | points | 
| 54 | 9999-01-02 | tampa bay lightning | 1 - 2 | 26 - 12 - 11 - 5 | 68 | 
| 55 | 9999-01-04 | washington capitals | 5 - 1 | 27 - 12 - 11 - 5 | 70 | 
| 56 | 9999-01-05 | atlanta thrashers | 5 - 1 | 28 - 12 - 11 - 5 | 72 | 
| 57 | 9999-01-10 | new jersey devils | 4 - 1 | 29 - 12 - 11 - 5 | 74 | 
| 58 | 9999-01-12 | new york rangers | 2 - 1 | 30 - 12 - 11 - 5 | 76 | 
| 59 | 9999-01-14 | new york rangers | 6 - 2 | 31 - 12 - 11 - 5 | 78 | 
| 60 | 9999-01-16 | san jose sharks | 2 - 5 | 31 - 13 - 11 - 5 | 78 | 
| 61 | 9999-01-17 | tampa bay lightning | 2 - 5 | 31 - 14 - 11 - 5 | 78 | 
| 62 | 9999-01-19 | boston bruins | 3 - 4 | 31 - 15 - 11 - 5 | 78 | 
| 63 | 9999-01-21 | atlanta thrashers | 5 - 4 | 32 - 15 - 11 - 5 | 80 | 
| 64 | 9999-01-24 | chicago blackhawks | 3 - 1 | 33 - 15 - 11 - 5 | 82 | 
| 65 | 9999-01-26 | ottawa senators | 1 - 1 ot | 33 - 15 - 12 - 5 | 83 | 
| 66 | 9999-01-28 | boston bruins | 2 - 3 ot | 33 - 15 - 12 - 6 | 84 | 
| 67 | 9999-01-29 | detroit red wings | 2 - 4 | 33 - 16 - 12 - 6 | 84 | 
 
SQL Command:
SELECT 
    CASE 
        WHEN (SELECT score FROM table_sql WHERE february = '2003-04-24' AND score = '5 - 4') IS NOT NULL 
        THEN 'TRUE' 
        ELSE 'FALSE' 
    END;