Files
budget-database/mysql/tables/HOLIDAYS.sql
2023-03-04 18:23:05 -05:00

13 lines
134 B
Transact-SQL

use Leo
go
CREATE TABLE dbo.HOLIDAYS
(
dt date NOT NULL,
Holiday varchar(50) NULL,
PRIMARY KEY CLUSTERED (
dt ASC
)
)
GO