oracle ORA-01451的错误分析(column to be modified to NULL cannot be modified to NULL)
Oracle中不允许将NULL字段修改为NULL字段。
alter table table_name modify column_name null;
建议修改前加个判断。
Oracle中不允许将NULL字段修改为NULL字段。
alter table table_name modify column_name null;
建议修改前加个判断。