select * from TableName
-- 添加一個字段
alter table TableName add 字段2 clob;
--復制數據到此字段
update TableName set 字段2 = to_clob(字段);
--給字段改名
alter table TableName rename column 字段 to 字段3;
alter table TableName rename column 字段2 to 字段;
-- 加注釋
comment on column TableName.字段3 is '問題闡述(20190907日廢棄,換成clob類型)';
comment on column TableName.字段 is '問題闡述';
