获取周二到周一一周的数量总和

发布于 2024-11-05 18:20:35 字数 113 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可可 2024-11-12 18:20:35

您可以使用 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文