2019-08-01.sql 308 B

12345678
  1. -- Add/modify columns
  2. alter table PL_MAJOR add is_net_exam NUMBER(1);
  3. alter table PL_MAJOR add is_live_enrol NUMBER(1);
  4. -- Add comments to the columns
  5. comment on column PL_MAJOR.is_net_exam
  6. is '是否网考0:否1:是';
  7. comment on column PL_MAJOR.is_live_enrol
  8. is '是否现场报考0:否1:是';