例:alter table tablename add kssj varchar(8);
例:alter table tablename drop column hahaha;
例:comment on column tablename.欄位 is '注釋';
create table 表名
--欄位
(grbh varchar2(14) not null);
-- 給表加注釋,表名
comment on table 表名 is '學員鑑定資訊互動表';
-- 給字段加注釋
comment on column 表名.grbh is '個人編號';
--給表增加主鍵
alter table 表名
add constraint pk_表名 primary key (grbh);
drop table tablename;
alter table table1 rename to table2;
insert into table1 (select * from table2);
create table table1 select * from table2 where 1>1;
create table table1 select * from table2;
Oracle基礎語句
1 連線資料庫 connect uuu ooo connect sys ok as sysdba 2 建立表空間 create tablespace stu 表空間名 datafile e stu.dbf size 100m autoextend on next 5m maxsize 500m 3 ...
oracle基礎語句
資料表空間 tbs user1 data 索引表空間 tbs user1 index 使用者 user 1 表 table t 建立資料表空間 create next 500m maxsize unlimited extent management local uniform size 8m 建立索...
Oracle 基礎語句
傳送門 易百教程 oracle oracle資料庫伺服器由乙個資料庫和至少乙個資料庫例項組成。資料庫是一組儲存資料的檔案,而資料庫例項則是管理資料庫檔案的記憶體結構。此外,資料庫是由後台程序組成。資料庫和例項是緊密相連的,所以我們一般說的oracle資料庫,通常指的就是例項和資料庫。su oracl...