Alter table for ORACLE
1.create table
create table test (a varchar2(10),b number(2));
2.rename table
alter table test rename to txt;
rename txt to test;
3.add column
alter table test add c varchar2(10);
alter table test add (c varchar2(10),d number(5));
4.rename column
alter table test rename column a to b;
5.alter column
alter table test modify a varchar(10);
alter table test modify b varchar(10);
5.drop column
alter table test drop column a;[@more@]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/789833/viewspace-1036286/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle alter table詳解Oracle
- alter table move 和 alter table shrink space的區別
- Oracle 11g alter table move與shrink spaceOracle
- oracle 中 ALTER TABLE ADD default 的明確Oracle
- oracle 10g__alter table shrink space compactOracle 10g
- oracle10g_alter table_測試3Oracle
- mysql的ALTER TABLE命令MySql
- alter table using indexIndex
- v$lock之alter table drop column與alter table set unused column區別系列五
- How to adjust the high watermark in ORACLE 10g – ALTER TABLE SHRINKOracle 10g
- alter table語法增補(一)
- ALTER TABLE MOVE | SHRINK SPACE區別
- ALTER TABLE MOVE和SHRINK SPACE區別
- alter database in OracleDatabaseOracle
- Alter system in OracleOracle
- alter table move 與shrink space的區別
- alter table move跟shrink space的區別
- alter table engine=memory ERROR 1114Error
- alter table nologging /*+APPEND PARALLEL(n)*/APPParallel
- alter table move跟shrink space的區別(轉)
- ALTER TABLE causes auto_increment resulting key 'PRIMARY'REM
- 表、索引遷移表空間alter table move索引
- alter table列管理的一些區別
- alter table table_name move ; 在自身表空間move是如何操作的?
- Oracle 12.2之後ALTER TABLE .. MODIFY轉換非分割槽表為分割槽表Oracle
- MySQL oak-online-alter-table工具使用初探MySql
- alter table modify constraint_disable_enable_novalidateAI
- 資料庫審計(create/alter/drop table、user、tablespace)資料庫
- oracle10g_alter table shrink space_compact_cascade回收空間測試(一)Oracle
- oracle11g alter table set unused column指定表某列不可用之系列一Oracle
- MySQL-ALTER TABLE命令學習[20180503]MySql
- 測試alter table storage及dbms_space_admin包
- mysql裡alter table 重定義主鍵的步驟:MySql
- alter table新增欄位操作究竟有何影響?(上篇)
- alter table新增欄位操作究竟有何影響?(下篇)
- oracle 11g之alter table drop unused columns checkpoint刪除表不可用列系列二Oracle
- Oracle alter index rebuild 說明OracleIndexRebuild
- [Oracle] Partition table exchange Heap tableOracle