111,126
社区成员
发帖
与我相关
我的任务
分享CREATE TABLE [Question](
[r_id] [bigint] IDENTITY(1,1) NOT NULL,
[r_items_id] [bigint] NOT NULL,
[r_Topic] [text] NOT NULL,
[r_order] [int] NULLCREATE TABLE [QuestionOption](
[r_id] [bigint] IDENTITY(1,1) NOT NULL,
[r_Question_id] [bigint] NOT NULL,
[r_OptionName] [varchar](200) NOT NULL,
[r_NextQuestion] [bigint] NOT NULL