Create a temporal database based on a human resources database
Create a Temporal Database based on a human resources database. It must have 3 dimension tables and 1 fact table. Use this database code as foundation. Create Database HumanResoruces1 GO use HumanResoruces1 GO CREATE TABLE [Department] ( [Department_ID] [int] NOT NULL, [Department_Name] [nchar](50) NULL, [Department_PhoneNumber] [nchar](25) NULL, PRIMARY KEY (Department_ID) […]