guoyu/Study-Vue-redis/database_modify_exam_id_nullable.sql
2025-12-03 18:58:36 +08:00

5 lines
180 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 修改 score 表的 exam_id 字段,允许为 NULL因为考试名称不是必填项
ALTER TABLE `score`
MODIFY COLUMN `exam_id` bigint DEFAULT NULL COMMENT '考试ID';