Statement: by late january detroit was the lowest scoring team

Input Table: 2003 - 04 detroit red wings season

datevisitorscorehomedecisionattendancerecord
0002-01-01detroit4 - 1carolinajoseph1705324 - 12 - 4 - 1
0001-01-03anaheim1 - 3detroitlegace2006625 - 12 - 4 - 1
0000-01-05nashville0 - 6detroitjoseph2006626 - 12 - 4 - 1
0001-01-07boston3 - 0detroitjoseph2006626 - 13 - 4 - 1
0000-01-10detroit1 - 2bostonjoseph1756526 - 13 - 4 - 2
9999-01-14chicago2 - 4detroitlegace2006627 - 13 - 4 - 2
0000-01-16phoenix3 - 3detroitjoseph2006627 - 13 - 5 - 2
9999-01-19detroit1 - 2san josejoseph1736127 - 14 - 5 - 2
9999-01-21detroit2 - 2anaheimlegace1717427 - 14 - 6 - 2
9999-01-22detroit5 - 4los angelesjoseph1811828 - 14 - 6 - 2
9999-01-24detroit2 - 5phoenixjoseph1901928 - 15 - 6 - 2
9999-01-26detroit2 - 2dallaslegace1853228 - 15 - 7 - 2
9999-01-29new jersey2 - 5detroitjoseph2006629 - 15 - 7 - 2
9999-01-31carolina4 - 4detroitlegace2006630 - 15 - 8 - 2

SQL Command:

SELECT CASE WHEN (SELECT MIN(score) FROM table_sql WHERE date >= '2003-01-01' AND date <= '2003-01-31') = (SELECT MIN(score) FROM table_sql WHERE date >= '2003-01-01' AND date <= '2003-01-31' AND home = 'detroit') THEN 'TRUE' ELSE 'FALSE' END;