获取周二到周一一周的数量总和
我正在使用 SQL SERVER 2005,并有一个按日期存储 challans 的表。它有一个“数量”字段 我想要获得该月各周的数量总和。但这几周必须从周二到周一开始(这是石油会计的国际标准)
I'm using SQL SERVER 2005 and have a table which stores challans datewise. It has a field 'Quantity'
I want to have a sum of Quantity for the weeks of the month. But these weeks have to start from Tuesday To Monday (this is an international standard for Oil Accounting)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 set DATEFIRST 设置一周的第一天,然后使用 datepart。
这些 SQL 语句应该可以满足您的需求。假设你的表被调用并且日期列是
SET DATEFIRST 2;
选择日期部分(周,:my_date),总和(数量)
从
按日期部分分组(周,:my_date)
You can use set DATEFIRST to set the first day of the week, and then use datepart.
These SQL Statements should get you what you want. Assumption is that your table is called and the date column is
SET DATEFIRST 2;
select datepart(week, :my_date), sum(quantity)
from
group by datepart(week, :my_date)