如何重命名Oracle 10g中的表列

前端之家收集整理的这篇文章主要介绍了如何重命名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

猜你在找的Oracle相关文章