--增加大字段项  
alter table 表名 add hehe clob;  
--将需要改成大字段的项内容copy到大字段中  
update 表名 set hehe=name1;  
--删除原有字段  
alter table 表名 drop column name1;  
--将大字段名改成原字段名  
alter table 表名 rename column hehe to name1;

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2021-10-29
  • 2021-12-23
  • 2021-08-07
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
相关资源
相似解决方案