---從乙個表建立出另乙個表
create
table users as
select * from emp;
---建立表
create
table students(
id number,
name varchar2(64),
*** char(2),
birthday date,
fellowship number(10, 2),
resume clob);
create
table class_(
id number,
name varchar2(32));
--修改表的字段 新增字段,修改字段,刪除字段
alter
table test add (name varchar(32));
alter
table test modify(name varchar(64));
alter
table test drop
column name;
--修改表名
rename test to testy;
---表修改例項 增改刪字段 修改表名 刪除表
alter
table student add classid number;
alter
table students modify name varchar2(30);
alter
table students drop
column fellowship;
rename students to stu;
drop
table stu;
---oracle的crud操作
insert
into class_ values(1, '**班');
insert
into class_(name, id) values( '美術班', 2);
ORACLE9解除安裝
oracle資料庫安裝起來比較麻煩,解除安裝也不像微軟的產品那樣容易。對於oracle9的解除安裝,控制面板裡是沒有解除安裝程式的。可以從開始選單 程式 oracle installation products universal installer 進入安裝的介面,介面上有乙個解除安裝安裝產品,進...
解除安裝oracle9
1,停止oracle所有服務。2,執行oracle universal installer解除安裝oracle 3,個性登錄檔,刪除oracle的相關資訊 oracle軟體相關鍵值 hkey local machine software oracle oracle服務 hkey local mach...
在windows xp上刪除oracle9i方法
在windows xp上刪除oracle9i方法 1 開始 設定 控制面板 管理工具 服務 停止所有oracle服務。2 開始 程式 oracle orahome81 oracle installation products universal installer 卸裝所有oracle產品,但uni...