由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - Basic oracle questions.
相关主题
SQL Server Trigger on System Base Table or Catalog Viewmysql maximum columns <=1000?
analyze 在oracle里怎么用?我的DBA在生成ORACLE table的时候需要一个一个column看
初级问题Oracle,table有上千个column
Please help: Innodb table could not drop a column很弱的Oracle问题
Re: Please help: Innodb table could notSQL combine two columns from two different tables no shared (转载)
SQL问题请教: add one more columnTable Merge (SQL Server)
truncate和delete在ORACLE里有什么区别?其实有个问题好久没有明白!
请教一个问题Oracle Group and Index question
相关话题的讨论汇总
话题: 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版参与讨论
相关主题
Oracle Group and Index questionRe: Please help: Innodb table could not
问个external table field definition的问题SQL问题请教: add one more column
Oracle下如何能得到所有table的名字?truncate和delete在ORACLE里有什么区别?
How to delete column and row in table请教一个问题
SQL Server Trigger on System Base Table or Catalog Viewmysql maximum columns <=1000?
analyze 在oracle里怎么用?我的DBA在生成ORACLE table的时候需要一个一个column看
初级问题Oracle,table有上千个column
Please help: Innodb table could not drop a column很弱的Oracle问题
相关话题的讨论汇总
话题: oracle话题: column话题: name话题: basic话题: created