转自:https://jingyan.baidu.com/article/c35dbcb0edf7408916fcbc05.html
select * from CT_BAS_BackgroundProce 查询
alter table CT_BAS_BackgroundProce add newColnum clob; 新增一列 类型为clob 名称为newColnum
update CT_BAS_BackgroundProce set newColnum = CFPROCESQL; 将原有的数据复制到新的一列
ALTER table CT_BAS_BackgroundProce drop column CFPROCESQL; 将原来的列删除
alter table CT_BAS_BackgroundProce rename column newColnum to CFPROCESQL; 新增的列重新命名为原来的列
当修改列名异常的话 可以新建一个原来的 然后反操作一下
alter table CT_SYS_CarInfoInterfaceLogBill add CFERRORLOG clob
update CT_SYS_CarInfoInterfaceLogBill set CFERRORLOG = newColnum
ALTER table CT_SYS_CarInfoInterfaceLogBill drop column newColnum