前端之家收集整理的这篇文章主要介绍了
如何重命名Oracle 10g中的表列,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道:
如何
重命名Oracle 10g中的表列?
sql> create table a(id number);
Table created.
sql> alter table a rename column id to new_id;
Table altered.
sql> desc a
Name Null? Type
----------------------------------------- -------- -----------
NEW_ID NUMBER
原文链接:https://www.f2er.com/oracle/208194.html