使用SQL Server对会计年度进行分组

sql Server中是否有一种方法可以从具有日期列(1998年到2010年)的表中显示会计年度(从10月1日开始到9月30日结束).这是我做的:
select 'FY1999' as FY,site,count(*)
from mytable
where mydate >='10/1/1998' 
    and mydate <'10/1/1999'
group by site
select 'FY2000' as FY,count(*)
from mytable
where mydate >='10/1/1999' 
    and mydate <'10/1/2000'
group by site
select 'FY2001' as FY,count(*)
from mytable
where mydate >='10/1/2000' 
    and mydate <'10/1/2001'
group by site

这个年度超过10年这样做是不是太重复了?

解决方法

您甚至可以在sql Server中创建用户定义的函数,该函数采用日期参数并将会计年度作为int返回:
CREATE FUNCTION GetFiscalYear(@TheDate date)
RETURNS int
AS
BEGIN
    DECLARE @FiscalYear int  

    IF DATEPART(month,@TheDate) < 10
        SELECT @FiscalYear = DATEPART(year,@TheDate)
    ELSE
        SELECT @FiscalYear = DATEPART(year,@TheDate) + 1  

    RETURN @FiscalYear
END

然后你可以使用它,例如:

SELECT Id,ShippingDate,GetFiscalYear(ShippingDate)
FROM SoMetable

相关文章

(一)日志传送架构 (1.1)相关服务器 主服务器 :用于生产的服务器,上面运行这生产SQL Server数据库...
(一)事故背景 最近在SQL Server 2012生产数据库上配置完事物复制(发布订阅)后,生产数据库业务出现了...
(一)测试目的 目前公司使用的SQL SERVER 2012高可用环境为主备模式,其中主库可执行读写操作,备库既...
(一)背景个人在使用sql server时,用到了sql server的发布订阅来做主从同步,类似MySQL的异步复制。在...
UNION和OR谓词 找出 product 和 product2 中售价高于 500 的商品的基本信息. select * from product wh...
datawhale组队学习task03