create table test
(
testitemid int identity primary key,
testid int,
itemname nvarchar(1000),
select1 nvarchar(1000) ,
score1 int ,
select2 nvarchar(1000) ,
score2 int ,
select3 nvarchar(1000),
score3 int ,
select4 nvarchar(1000) ,
score4 int,
select5 nvarchar(1000) ,
score5 int ,
)
insert into test(testid,itemname,select1,score1,select2,score2,select3,score3)
values(1,'测试项1','是',1,'不知道',2,'不是',3)
insert into test(testid,itemname,select1,score1,select2,score2,select3,score3)
values(1,'测试项2','是',1,'不知道',2,'不是',3)
insert into test(testid,itemname,select1,score1,select2,score2,select3,score3)
values(1,'测试项3','是',1,'不知道',2,'不是',3)
insert into test(testid,itemname,select1,score1,select2,score2,select3,score3)
values(2,'测试项1','是',1,'不知道',2,'不是',3)
insert into test(testid,itemname,select1,score1,select2,score2,select3,score3)
values(2,'测试项2','是',1,'不知道',2,'不是',3)
insert into test(testid,itemname,select1,score1,select2,score2)
values(2,'测试项3','是',1,'不是',2)
insert into test(testid,itemname,select1,score1,select2,score2)
values(2,'测试项4','是',1,'不是',2)