1.添加表字段--咨询表添加内容简介字段

ALTER TABLE s_table ADD intro VARCHAR2(1024);

COMMENT ON COLUMN s_table.remarks IS

'描述';

 

2.修改为clob类型字段

delete from s_table ;
commit;
alter table s_table drop column remarks ;
alter table s_table add remarks CLOB;

相关文章:

  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-16
猜你喜欢
  • 2022-02-11
  • 2021-05-15
  • 2021-05-18
  • 2021-10-23
  • 2021-08-07
  • 2021-05-01
相关资源
相似解决方案