oracle 修改字段名, 字段长度

来源:互联网 发布:外贸原单淘宝店 编辑:程序博客网 时间:2024/04/30 05:12

修改字段名alter table <table_name> rename column <column_old> to <column_new>;
修改长度
alter table <table_name> modify <column> <datatype>;


ALTER TABLE 表名 MODIFY 字段名 VARCHAR2(长度)

0 0
原创粉丝点击