oracle中varchar2转换成clob(转载)

alter table Shop add texts clob;

update shop t set t.texts=t.COMPANY_INTRO;

alter table shop drop column COMPANY_INTRO;

alter table shop rename column texts to COMPANY_INTRO;

猜你喜欢

转载自15090079858-163-com.iteye.com/blog/1748062