單項選擇題發(fā)出下列語句:alter table sales drop columm profit;何時從Oracle中實際刪除列?()

A.執(zhí)行語句后立即刪除
B.發(fā)出alter table drop unused columns命令之后
C.發(fā)出alter table set unused columns命令之后
D.發(fā)出alter table modify命令之后


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題刪除Oracle數(shù)據(jù)庫中父/子關(guān)系中的父表。在刪除父表時下列哪個對象不會刪除?()

A.相關(guān)約束
B.子列
C.相關(guān)觸發(fā)器
D.相關(guān)索引

2.單項選擇題數(shù)據(jù)庫中的中的PROFITS表中PRODUCT_NAME與SALE_PERIOD列建立主鍵。下列哪個語句無法定義這個主鍵?()

A.create table profits(product_name varchar2(10),sale_perion varchar2(10),profit number, constraint pk_profits_01 primary key(product_name,sale_period))
B.alter table profits add constraint pk_profits_01 primary key(product_name,sale_period)deferrabl
C.以上兩者都是