17

我有以下 TSQL 表变量:

declare @NumDaysMonth table
(
   month_id smallint,
   num_days smallint
)

我只想快速查找每个月的天数。如何像 C 数组一样初始化此表:

int numDaysMonth[] = {31, 28, 30, ... , 31};
4

5 回答 5

29

Well you can't. The best you can do is something like this

Insert Into @NumDaysMonth
Values 
(1,31),
(2,28),
(3,31),
...
(12,31);

Then retrieval might be something like

DECLARE @LookItUp int

SELECT @LookItUp = num_days 
FROM @NumDaysMonth
WHERE month_Id = 12;

PRINT @LookItUp 

SQL Fiddle Demo

于 2012-09-25T18:51:51.120 回答
3

以下内容未解决 OP 初始化表的问题。欢迎您将其视为格式化的评论。

对于奇数查找表来说很方便的一个技巧是动态创建一个虚拟表:

declare @Foo as Table ( Month Int )
insert into @Foo values ( 1 ), ( 3 ), ( 9 )

select *
  from @Foo as F inner join
    ( select month_id, num_days
      from ( values
      ( 1, 31 ), ( 2, 28 ), ( 3, 31 ), ( 4, 30 ), ( 5, 31 ), ( 6, 30 ),
      ( 7, 31 ), ( 8, 31 ), ( 9, 30 ), ( 10, 31 ), ( 11, 30 ), ( 12, 31 )
      ) as NumDaysMonth( month_id, num_days ) ) as NumDaysMonth on
    NumDaysMonth.month_id = F.Month

为了获得一个月中的天数,我更倾向于创建一个函数,该函数采用年份和月份并返回正确的值。当我需要从一些代码快速一次性翻译成可读的东西时,un-table 很方便。

如果您需要在一个地方多次参考仿表:

; with NumDaysMonth as (
  ( select month_id, num_days
    from ( values
      ( 1, 31 ), ( 2, 28 ), ( 3, 31 ), ( 4, 30 ), ( 5, 31 ), ( 6, 30 ),
      ( 7, 31 ), ( 8, 31 ), ( 9, 30 ), ( 10, 31 ), ( 11, 30 ), ( 12, 31 )
      ) as NumDaysMonth( month_id, num_days ) ) ),
  FooMonths as (
    select *
      from @Foo as F inner join
        NumDaysMonth as NDM on NDM.month_id = F.Month ),
  FooWithFollowingMonths as (
    select *
      from FooMonths
    union
    select *
      from @Foo as F inner join
        NumDaysMonth as NDM on NDM.month_id = F.Month + 1 )
  select *
    from FooWithFollowingMonths

除此之外,查找表可能应该保留为真实的表或表值函数。

于 2012-09-25T19:52:39.340 回答
2

仅供参考,这种数组有点不完整,因为它不会随着闰年而改变?例如,今年 2 月有 29 天。

以下为您提供了一个以 0 为索引的列表(如 C#)并且是针对当前年份的。

declare @NumDaysMonth table
(
   month_id smallint,
   num_days smallint
)
insert @NumDaysMonth
select m.m, day(dateadd(m,m+1,y)-1)
from
(select CAST(right(year(getdate()),4)+'0101' as datetime)) y(y)
cross join
(select 0 union all
 select 1 union all
 select 2 union all
 select 3 union all
 select 4 union all
 select 5 union all
 select 6 union all
 select 7 union all
 select 8 union all
 select 9 union all
 select 10 union all
 select 11) m(m)

select * from @NumDaysMonth

-- results
MONTH_ID    NUM_DAYS
0   31
1   29
2   31
3   30
4   31
5   30
6   31
7   31
8   30
9   31
10  30
11  31

如果您需要任何其他年份,请将年份放入 Y 子查询中,例如(select cast('19990101' as datetime))

于 2012-09-25T20:06:47.317 回答
2

这很简单。用于identity生成自动递增的数字。

declare @NumDaysMonth table
(
    month_id smallint identity primary key,
    num_days smallint
);

insert into @NumDaysMonth
    (num_days)
values
    (31),
    (28),
    (31),
    (30),
    (31),
    (30),
    (31),
    (31),
    (30),
    (31),
    (30),
    (31);

select *
from @NumDaysMonth;

->

(12 row(s) affected)
month_id num_days
-------- --------
1        31
2        28
3        31
4        30
5        31
6        30
7        31
8        31
9        30
10       31
11       30
12       31

(12 row(s) affected)

identity如果需要,可以使用不同的起始编号或增量播种。

于 2016-06-21T15:08:26.953 回答
0

可以改用 UDF 并使其可在任何年份进行调整。

-- =============================================
-- Author:      Alexander Melnichuk for StackOverflow.com
-- Create date: 2013-03-12
-- Description: Number of days in a month
-- =============================================
CREATE FUNCTION [dbo].[f_NumDaysMonth] (
    @Year datetime = NULL   -- Month and day are ignored. Null gets current year. 
)
RETURNS 
@Ret TABLE (
    month_id smallint, 
    num_days smallint
)
AS
BEGIN
    SET @Year = convert(datetime, convert(varchar(4), 
                    isnull(@Year, getdate()), 112) + '0101', 112)

    WITH  
    seq AS  
    (--==== Returns table of values from 1 to 12
    SELECT TOP (12)
        N = ROW_NUMBER() OVER (ORDER BY t1.Object_ID)
    FROM Master.sys.All_Columns t1          -- There are certainly more than 12 columns in your Master database ;)
    --CROSS JOIN Master.sys.All_Columns t2  -- Uncomment if you need more values. Not this time though.
    )  

    INSERT INTO @Ret
    SELECT N, 
        day(dateadd(day, -1, dateadd(month, N, @Year)))
    FROM seq
    RETURN 
END

用法:

SELECT * FROM [dbo].[f_NumDaysMonth] ('20130101')

执行时间 - 0 毫秒。:)

于 2013-03-12T13:04:51.483 回答