USE [CPMIndiaBusinessInsight] GO /****** Object: Table [dbo].[Employee_Master] Script Date: 5/18/2026 5:34:08 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Employee_Master]( [project_id] [bigint] NOT NULL, [region_id] [bigint] NULL, [region] [nvarchar](max) NULL, [state_id] [bigint] NULL, [state] [nvarchar](max) NULL, [city_id] [bigint] NULL, [city] [nvarchar](max) NULL, [employee_id] [bigint] NOT NULL, [employee_name] [nvarchar](max) NOT NULL, [gender] [nvarchar](max) NULL, [employee_type] [nvarchar](max) NULL, [designation_id] [bigint] NULL, [designation] [nvarchar](max) NULL, [employee_role] [nvarchar](max) NULL, [manager_id] [bigint] NULL, [manager_name] [nvarchar](max) NULL, [employee_legacy_code] [nvarchar](max) NULL, [employee_joining_date] [date] NULL, [employee_resign_date] [date] NULL, [employee_status] [nvarchar](max) NULL, [position_code] [nvarchar](max) NULL, [employee_working_role] [nvarchar](max) NULL, [Unique_Employee_ID] [varchar](30) NULL, [channel_id] [int] NULL, [channel_name] [varchar](50) NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO