-
alter tablespace tablespace_name online|offline設(shè)置在線脫機(jī)狀態(tài) desc dba_tablespaces查看數(shù)據(jù)字典 select status from dba_tablespaces where tablespace_name='大寫表空間名稱'查看表空間的狀態(tài) 修改表空間的只讀或者可讀寫狀態(tài) alter tablespace tablespace_name read only|read write查看全部
-
constraint constraint_name foreign key(column_name) references table1(column_name) [on delete cascade]查看全部
-
刪除主鍵約束: alter table table_name drop primary key;查看全部
-
刪除約束條件: alter table table_name drop constraint constraint_name;查看全部
-
設(shè)置主鍵的有/無效性: alter table table_name enable/disable constraint constraint_name;查看全部
-
更改主鍵的名字: alter table table_name rename constraint old_name to new_name;查看全部
-
rename 表明 to 新表明 (修改表名)查看全部
-
alter table tablename rename colum newrow to newrow2 修改列名查看全部
-
查看表空間 desc dba_data_files select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE';【表空間名要大寫】 查看臨時(shí)表空間 select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE';查看全部
-
alter table tablename add newrow varchar2(2) 增加列 alter table tablename modify newrow integer 修改類型 alter table tablename drop newrow 刪除列 alter table tablename rename newrow to newrow2 修改列名查看全部
-
查看表的約束信息:user_constraints select * from user_constraints where table_name=‘表名’;查看全部
-
——dba_tablespaces,dba_users : 系統(tǒng)管理員查看的數(shù)據(jù)字典 ——user_tablespaces,user_users : 用戶所查看的數(shù)據(jù)字典 system:系統(tǒng)表空間 example的輔助表空間sysaux:數(shù)據(jù)庫實(shí)例 temp:臨時(shí) users:數(shù)據(jù)庫用戶創(chuàng)建數(shù)據(jù)庫對象查看全部
-
創(chuàng)建表時(shí)設(shè)置主鍵約束的兩種方式: 1、create table table_name( column1 datatype primary key, ...); 2、create table table_name( column1 datatype, ..., CONSTRAINT constraint_name primary key (column1,...));查看全部
-
修改表字段非空約束: ALTER TABLE table_name MODIFY column_name datatype NOT NULL查看全部
-
建表時(shí)復(fù)制: create table new_table as select column1,...|* from old_table; 如果對整個(gè)表進(jìn)行復(fù)制:as select * from old_table; 如果只復(fù)制指定的字段:as select column1,... from old_table; 如果只想復(fù)制表結(jié)構(gòu)而不想復(fù)制表里面的內(nèi)容可以加上 where 1=2; 插入數(shù)據(jù)時(shí)復(fù)制: insert into table_name[(column1,...)] select column1,...|* from old_table;查看全部
舉報(bào)
0/150
提交
取消