我需要在过去的一年中找到每周结束的数据。目前我有这段代码。
Select Ordnum, orddate, sls, count(*) over () as Total
from invoices
where shipvia = 'drop ship'
AND OrdDate between '9/28/2015' and '10/2/2015'
现在,它显示了特定周所需的数据。我使用计数来收集返回的总行数,因为最后这是我每周需要知道的数字。我需要每周回到过去一年的总数可能更多。我该怎么做呢?谢谢!