日期:2014-05-16 浏览次数:20454 次
sql修改oracle表字段名称:
--改字段名 alter table tb_user_test rename column neme to cname;
?
如果表的字段名是关键字,则在关键字外加双引号:
--改字段名 alter table tb_user_test rename column cname to "validate"