如何操作?
5 个解决方案
#1
817的
ALTER TABLE emp RENAME TO employee;
ALTER TABLE emp RENAME TO employee;
#2
create table newName(.....,newColName)
as select ..... from oldName;
drop table oldName;
as select ..... from oldName;
drop table oldName;
#3
表名称是修改不了的
如果是修改字段只能改表字段的数据类型及长度,名称也改变不了
如果是修改字段只能改表字段的数据类型及长度,名称也改变不了
#4
修改表名:rename table1 to table2;
修改子段属性:
alter table talbe1
modify (col1 datatype);
修改子段名:
alter table table1
drop (col1);
alter table table1
add (col11 datatype);
修改子段属性:
alter table talbe1
modify (col1 datatype);
修改子段名:
alter table table1
drop (col1);
alter table table1
add (col11 datatype);
#5
修改表名:rename table1 to table2;
修改子段名:alter table table1
drop (col1);
alter table table1
add (col11 datatype);
修改子段名:alter table table1
drop (col1);
alter table table1
add (col11 datatype);
#1
817的
ALTER TABLE emp RENAME TO employee;
ALTER TABLE emp RENAME TO employee;
#2
create table newName(.....,newColName)
as select ..... from oldName;
drop table oldName;
as select ..... from oldName;
drop table oldName;
#3
表名称是修改不了的
如果是修改字段只能改表字段的数据类型及长度,名称也改变不了
如果是修改字段只能改表字段的数据类型及长度,名称也改变不了
#4
修改表名:rename table1 to table2;
修改子段属性:
alter table talbe1
modify (col1 datatype);
修改子段名:
alter table table1
drop (col1);
alter table table1
add (col11 datatype);
修改子段属性:
alter table talbe1
modify (col1 datatype);
修改子段名:
alter table table1
drop (col1);
alter table table1
add (col11 datatype);
#5
修改表名:rename table1 to table2;
修改子段名:alter table table1
drop (col1);
alter table table1
add (col11 datatype);
修改子段名:alter table table1
drop (col1);
alter table table1
add (col11 datatype);