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

12
tables/HOLIDAYS.sql Normal file
View File

@@ -0,0 +1,12 @@
use Leo
go
CREATE TABLE dbo.HOLIDAYS
(
dt date NOT NULL,
Holiday varchar(50) NULL,
PRIMARY KEY CLUSTERED (
dt ASC
)
)
GO