修改表的欄位型別

why566發表於2008-07-10
第一種方法: (1).create table new_table as select  to_number(clip_stime) clip_stime,clip_path from vf_clipinfo;這裡我們要改欄位clip_stime的型別為number (2).重建相關的索引和約束等. 第二種方法: (1).exp現有表 (2).truncate table  (3).alter table table_name  modify column  new_type; (4).imp DMP檔案. 第三種方法: (1).增加新列 alter table table_name add new_col; (2).更新新列 update tablename set new_col=old_col; (3).刪除舊列alter table table_name  drop column old_col; (4).修改新列名為原來表的列名 alter table tablename rename column new_col  to old_col;

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7478833/viewspace-374927/,如需轉載,請註明出處,否則將追究法律責任。

相關文章