ALTER TABLE Question MODIFY title varchar(3072); ALTER TABLE Question MODIFY answer text; ALTER TABLE ExamQuestion MODIFY answerChoosen text; UPDATE AnswerSheet SET examPaperStatus = '已评分' WHERE endTime is not null and examPaperStatus is null; UPDATE AnswerSheet SET examPaperStatus = '未交卷' WHERE endTime is null and examPaperStatus is null;