Files
2026-05-18 17:40:50 +05:30

28 lines
1.6 KiB
Transact-SQL

USE [CPMIndiaBusinessInsight]
GO
/****** Object: Table [dbo].[OQaD] Script Date: 5/18/2026 5:34:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[OQaD](
[pk] [int] IDENTITY(1,1) NOT NULL,
[project_id] [int] NOT NULL,
[employee_id] [int] NOT NULL,
[process_id] [int] NULL,
[visit_date] [date] NOT NULL,
[question_category_id] [int] NOT NULL,
[question_category] [varchar](100) NULL,
[question_sub_category_id] [int] NULL,
[question_sub_category] [varchar](100) NULL,
[question_id] [int] NOT NULL,
[question] [nvarchar](500) NULL,
[answer_id] [int] NULL,
[answer] [varchar](255) NULL,
[correct_answer] [varchar](255) NULL,
[update_date] [date] NOT NULL,
[update_by] [varchar](100) NOT NULL,
[designation_id] [int] NULL
) ON [PRIMARY]
GO