当前位置:  开发笔记 > 数据库 > 正文

SQL返回特定年份以来的年份列表

如何解决《SQL返回特定年份以来的年份列表》经验,为你挑选了1个好方法。

我需要一个年份列表作为记录集从2004年到当前年度(以desc顺序),而不编写存储过程.这可能吗?(SQL Server 2005).所以它应该返回:

2009
2008
2007
2006
2005
2004



1> Joshua Carmo..:

这使用递归CTE从2004年到现在的所有年份:

with yearlist as 
(
    select 2004 as year
    union all
    select yl.year + 1 as year
    from yearlist yl
    where yl.year + 1 <= YEAR(GetDate())
)

select year from yearlist order by year desc;

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有