View: dbo.Employee_Reporting_Type_View
View definition
CREATE VIEW dbo.Employee_Reporting_Type_View AS
SELECT *
FROM (VALUES
(1,N'Family of owner'),
(2,N'Officer'),
(3,N'Part-time'),
(4,N'Probationary'),
(5,N'Seasonal'),
(6,N'Uninsured for health care'))
AS T(employee_reporting_type_KEY, description)