initial commit

This commit is contained in:
Peter Wood
2022-07-15 15:37:20 -04:00
parent 70a85b6024
commit 27e7c7829c
13 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
use Leo
go
create FUNCTION dbo.tvf_GetHolidays(@year int)
RETURNS TABLE
AS
RETURN (
select dt, dbo.fn_GetHoliday(dt) as Holiday
from (
select dateadd(day, number, convert(varchar,@year) + '-01-01') dt
from master..spt_values
where type='p'
) d
where year(dt) = @year and dbo.fn_GetHoliday(dt) is not null
)