I want to just select data for the current week. So... If the current date is a Monday just select Monday If the current date is a Tuesday select Monday and Tuesday's data If the current date is Wednesday select Monday, Tuesday and Wednesday ...and so on. I want it to reset on Sunday and I believe it's some kind of "where" clause just don't know what. As you can see below I'm just counting the number of pieces into the oven and want it to accumulate as the week goes on and then reset on Sunday.
select count(*) as PiecesIntoOven from ovenfeederfloat where...??
Thanks for the help.