Statement: the lowest attendance figure for a game was 42048
Input Table: 1976 detroit lions season
| week | date | opponent | result | attendance | 
| 1 | 1976-09-12 | chicago bears | l 10 - 3 | 54125 | 
| 2 | 1976-09-19 | atlanta falcons | w 24 - 10 | 50840 | 
| 3 | 1976-09-26 | minnesota vikings | l 10 - 9 | 77292 | 
| 4 | 1976-10-03 | green bay packers | l 24 - 14 | 55041 | 
| 5 | 1976-10-10 | new england patriots | w 30 - 10 | 60174 | 
| 6 | 1976-10-17 | washington redskins | l 20 - 7 | 45908 | 
| 7 | 1976-10-24 | seattle seahawks | w 41 - 14 | 61280 | 
| 8 | 1976-10-31 | green bay packers | w 27 - 6 | 74992 | 
| 9 | 1976-11-07 | minnesota vikings | l 31 - 23 | 46735 | 
| 10 | 1976-11-14 | new orleans saints | l 17 - 16 | 42048 | 
| 11 | 1976-11-21 | chicago bears | w 14 - 10 | 78042 | 
| 12 | 1976-11-25 | buffalo bills | w 27 - 14 | 66875 | 
| 13 | 1976-12-05 | new york giants | l 24 - 10 | 66069 | 
| 14 | 1976-12-11 | los angeles rams | l 20 - 17 | 73470 | 
 
SQL Command:
SELECT 
    CASE 
        WHEN MIN(attendance) = 42048 THEN 'TRUE' 
        ELSE 'FALSE' 
    END 
FROM table_sql;