boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - Basic oracle questions.
相关主题
SQL Server Trigger on System Base Table or Catalog View
analyze 在oracle里怎么用?
初级问题
Please help: Innodb table could not drop a column
Re: Please help: Innodb table could not
SQL问题请教: add one more column
truncate和delete在ORACLE里有什么区别?
请教一个问题
mysql maximum columns <=1000?
我的DBA在生成ORACLE table的时候需要一个一个column看
相关话题的讨论汇总
话题: oracle话题: column话题: name话题: basic话题: created
进入Database版参与讨论
1 (共1页)
s****s
发帖数: 42
1
I have already created several tables in Oracle.
How to display what tables I created?
What does command line look like?
How to change a column name if I found a typo after I created a table?
Thanks.
l***r
发帖数: 459
2

select table_name from user_tables;
alter table drop column ;
alter table add ;

【在 s****s 的大作中提到】
: I have already created several tables in Oracle.
: How to display what tables I created?
: What does command line look like?
: How to change a column name if I found a typo after I created a table?
: Thanks.

c*****d
发帖数: 6045
3

in oracle latest version (maybe 9i), you can use
alter table rename column to

【在 l***r 的大作中提到】
:
: select table_name from user_tables;
: alter table drop column ;
: alter table add ;

1 (共1页)
进入Database版参与讨论
相关主题
我的DBA在生成ORACLE table的时候需要一个一个column看
Oracle,table有上千个column
很弱的Oracle问题
SQL combine two columns from two different tables no shared (转载)
Table Merge (SQL Server)
其实有个问题好久没有明白!
Oracle Group and Index question
问个external table field definition的问题
Oracle下如何能得到所有table的名字?
How to delete column and row in table
相关话题的讨论汇总
话题: oracle话题: column话题: name话题: basic话题: created