Select dayname(current timestamp), count(*)
From Table1
That will get you the day of the week. Do you want to get the full date of Monday when it's Wednesday, Thursday, etc?
If so, you could do a case statement like this:
select case when day(current timestamp) = 3 then
Date(current timestamp - 1 days)
case when day(current timestamp) = 4 then
Date(current timestamp - 2 days)
ETC ,
Count(*)
From table1
Hopefully SPUFI lets you do that.