gitlink-glcc/sql/autoMatch.sql

4 lines
266 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.

ALTER TABLE `glcc_registration_student_task`
ADD COLUMN `sub_round` tinyint(4) NULL COMMENT '轮次round下的细分,0表示历史报名数据1表示待匹配的数据' AFTER `round`;
UPDATE glcc_registration_student_task SET sub_round =1 WHERE round = 2;